View the tavern's leaderboard — the top-ranked adventurers for a given campaign season, ordered by rating.
Parameters
Output
application/jsonresults
array
Required
No description available.
seasonNumber
integer
Required
The season these rankings are for.
Try It
Requests are sent directly from your browser. Some servers may block requests due to CORS.
View raw schema
{
"type": "query",
"output": {
"schema": {
"type": "object",
"required": [
"seasonNumber",
"results"
],
"properties": {
"results": {
"type": "array",
"items": {
"ref": "#leaderboardEntry",
"type": "ref"
}
},
"seasonNumber": {
"type": "integer",
"description": "The season these rankings are for."
}
}
},
"encoding": "application/json"
},
"parameters": {
"type": "params",
"properties": {
"limit": {
"type": "integer",
"default": 20,
"maximum": 100,
"minimum": 1
},
"seasonNumber": {
"type": "integer",
"default": 1,
"minimum": 1,
"description": "The campaign season to query. Defaults to season 1."
}
}
},
"description": "View the tavern's leaderboard — the top-ranked adventurers for a given campaign season, ordered by rating."
}