Prefer to chat? Query the API with natural language using our AI Skill →
Give your AI tool live Cito endpoint context before you write integration code.
Public docs assistant
Tell Cito API what you are building.
Get endpoint recommendations, exact requests, code snippets, and a free-key CTA without digging through every page.
Back to Call of Duty API
Leaderboards
Access player rankings by earnings and performance stats
Earnings Leaderboard
GET
/cod/leaderboards/earningsGet top earners in COD esports history or filtered by season.
Query Parameters
| Parameter | Type | Description |
|---|---|---|
season | string | Filter by season |
limit | number | Number of players (default: 50) |
Example Request
GET /api/v1/cod/leaderboards/earnings?limit=10Response
{
"success": true,
"data": [
{
"rank": 1,
"player": {
"codPlayerId": "...",
"ign": "Scump",
"team": "OpTic Texas",
"imageUrl": "https://..."
},
"totalEarnings": 3500000,
"tournamentsWon": 32
},
{
"rank": 2,
"player": {
"codPlayerId": "...",
"ign": "Crimsix",
"team": null,
"imageUrl": "https://..."
},
"totalEarnings": 3200000,
"tournamentsWon": 37
}
]
}Stats Leaderboard by Mode
GET
/cod/leaderboards/:modeGet top performers by game mode stats. Available modes: hardpoint, snd, control, overall.
Query Parameters
| Parameter | Type | Description |
|---|---|---|
stat | string | Stat to rank by (kills, kd, damage, hillTime, firstBloods) |
season | string | Filter by season |
limit | number | Number of players (default: 25) |
Example Request
GET /api/v1/cod/leaderboards/hardpoint?stat=damage&limit=25Response
{
"success": true,
"mode": "hardpoint",
"stat": "damage",
"season": "2025",
"data": [
{
"rank": 1,
"player": {
"ign": "Cellium",
"team": "Atlanta FaZe"
},
"value": 4250,
"mapsPlayed": 45
},
{
"rank": 2,
"player": {
"ign": "Dashy",
"team": "OpTic Texas"
},
"value": 4180,
"mapsPlayed": 42
}
]
}