Get standings (preset)
GET/leaderboards/:leaderboard_slug/standings
Returns paginated entries and me in one call. Equivalent to GET /{slug}/bundle?include=entries,me. Requires x-client-id, x-client-secret, and Authorization bearer token. Caller must have client.leaderboard permission.
Request
Responses
- 200
- 400
- 401
- 403
- 404
- 422
Successful Response
Bad Request
Unauthorized
Forbidden
Not Found
Validation Error
Preset equivalent to GET /{slug}/bundle?include=entries,me.
Query parameters
league,limit,offset,expand
cURL example
curl -X GET "http://localhost:8000/client/leaderboards/daily-elo/standings?league=gold&limit=50&expand=profile" \
-H "x-client-id: <your-client-id>" \
-H "x-client-secret: <your-client-secret>" \
-H "Authorization: Bearer <access-token>"