Get Score List
GET
https://api.lootlocker.io/server/leaderboards/{leaderboard_id}/list
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET 'https://api.lootlocker.io/server/leaderboards/11/list?count=10' \
--header 'x-auth-token;'
Response Response Example
{
"pagination": {
"previous_cursor": null,
"total": 40,
"next_cursor": 9
},
"items": [
{
"player": {
"name": "",
"public_uid": "4YNNKXKK",
"id": 719
},
"metadata": "",
"member_id": "719",
"rank": 1,
"score": 123123123
},
{
"player": {
"name": "",
"public_uid": "7SSLSM2M",
"id": 715
},
"metadata": "",
"member_id": "715",
"rank": 2,
"score": 99997
},
{
"player": {
"name": "",
"public_uid": "NFF7GM9E",
"id": 686
},
"metadata": "",
"member_id": "686",
"rank": 3,
"score": 93118
},
{
"player": {
"name": "",
"public_uid": "4NK3EDFX",
"id": 689
},
"metadata": "",
"member_id": "689",
"rank": 4,
"score": 90250
},
{
"player": {
"name": "",
"public_uid": "2S252YGP",
"id": 683
},
"metadata": "",
"member_id": "683",
"rank": 5,
"score": 78915
},
{
"player": {
"name": "",
"public_uid": "2JGGEYF4",
"id": 680
},
"metadata": "",
"member_id": "680",
"rank": 6,
"score": 78899
},
{
"player": {
"name": "",
"public_uid": "27K9YJ44",
"id": 708
},
"metadata": "",
"member_id": "708",
"rank": 7,
"score": 76333
},
{
"player": {
"name": "",
"public_uid": "LKDG53TM",
"id": 717
},
"metadata": "",
"member_id": "717",
"rank": 8,
"score": 73834
},
{
"player": {
"name": "",
"public_uid": "KHTFGTKG",
"id": 701
},
"metadata": "",
"member_id": "701",
"rank": 9,
"score": 72146
},
{
"player": {
"name": "",
"public_uid": "7AN342L2",
"id": 714
},
"metadata": "",
"member_id": "714",
"rank": 10,
"score": 66123
}
]
}
Request
Path Params
leaderboard_id
stringÂ
required
Example:
11
Query Params
count
stringÂ
required
Example:
10
Header Params
x-auth-token
stringÂ
required
Default:
{{server_auth_token}}
Responses
Modified at 2025-04-07 14:13:27