Uses actual data, but is opt-in
Not much to type here, this is just a nice little leaderboard of the people with the most doubloons.
To opt-in/out of the leaderboard, find the leaderboard section under the weeks top projects at The Signpost
The leaderboard uses opted-in people's rank, which means it can only calculate ranking based on that
There are two sorting modes, current doubloons, and all-time doubloons (all doubloons u have ever earned)
You can also search for users, and they will appear if they are opted into the leaderboard
Thanks to @taciturnaxolotl for implementing this on the signpost in PR hackclub/high-seas#997
Parameters:
- ?page=(integer) - Used for pagination, each page is 25 users
- ?sortBy=(current|total|spent) - How to sort the users, before slicing and returning 25 users based on page
Response:
{
users: [
{
username: String,
total_doubloons: Int,
current_doubloons: Int,
slack: String,
id: String
}
],
pages: Int,
opted_in: Int,
time_since_last_update: Int
}
Parameters:
- ?id=(string) - ID to search by (response will have a "user" object instead of users array)
- ?username=(string) - Username to search by, (will have "users" array of matches)
- ?sortBy=(current|total|spent) - How to sort the matches (if search by username), and what rank to set on the rank property
Response:
{
// If search with ?username
users: [
{
username: String,
total_doubloons: Int,
current_doubloons: Int,
slack: String,
id: String,
rank: Int
}
],
// If search with ?id
user: {
username: String,
total_doubloons: Int,
current_doubloons: Int,
slack: String,
id: String,
rank: Int
}
pages: Int,
opted_in: Int,
time_since_last_update: Int
}
Parameters:
- ?id=(string) - ID of the user to get graph points for
Response:
[
{
id: String,
doubloons: Int,
timestamp: String // ISO 8601
}
]
--- This repo may contain code generated by copilot