Leaderboards
Get leaderboards for all mini game types and default games for the authenticated app. For games without a mini game type, the miniGameTypeName is not present.
Authorizations
Responses
200
Leaderboards retrieved successfully
application/json
401
Unauthorized - invalid or missing API key
application/json
404
App not found
application/json
500
Internal server error
application/json
get
GET /api/v1/apps/leaderboards HTTP/1.1
Host:
x-app-api-key: YOUR_API_KEY
Accept: */*
{
"leaderboards": [
{
"miniGameTypeName": "text",
"leaderboard": [
{
"playerDisplayName": "text",
"playerScore": 1,
"createdAt": "2025-10-10T00:39:04.559Z",
"gameSessionId": "text",
"userId": "text"
}
]
}
]
}