Call of Duty player stats APIdown to the match and map.
Build player cards, leaderboards, recaps, fantasy tools, and analytics pages with CDL player totals and map-level stat rows.
30-60s
live CDL polling during match windows
500
free API calls/month to start
$25
starter paid plan, no contract
Developer endpoints
Player rows ready for your UI
Cito returns player stat records that are easy to render in tables, cards, leaderboards, and post-match analysis pages.
/v1/cod/matches/{matchId}/player-statsMatch-level player totals for the selected CDL match.
/v1/cod/matches/{matchId}/player-stats?includeMaps=truePlayer totals with per-map rows included for deeper analysis.
/v1/cod/playersPlayer directory data for profiles, autocomplete, and joins.
Fetch player stats with map rows
const response = await fetch("https://api.citoapi.com/api/v1/cod/matches/{matchId}/player-stats?includeMaps=true", {
headers: {
"x-api-key": process.env.CITO_API_KEY
}
});
const data = await response.json();
console.log(data);Player stats users actually care about
Expose the stats developers need for fantasy decisions, post-match recaps, and player comparison tools.
Map-level rows let you explain how a player performed across Hardpoint, Search and Destroy, Control, or other modes.
The API is priced for builders who need to validate demand before committing to expensive data contracts.
Use cases
Built for developers shipping COD products
Player profile pages
Show recent match performance, map rows, and player-specific trends.
Fantasy projections
Use match and map stats as inputs for projections, ownership tools, and recaps.
Leaderboards
Rank players by kills, damage, K/D, map performance, or custom metrics in your app.
Questions developers ask
Does the endpoint include per-map player stats?
Yes. Use includeMaps=true on the match player stats endpoint to request map-level breakdowns.
Can I build player leaderboards?
Yes. You can combine player stat endpoints with your own aggregation logic for leaderboards and rankings.
Is an API key required?
Yes. Full player stat endpoints require a Cito API key. You can create a free key to start testing.
Start building with Call of Duty data today
Get a free Cito API key, test real endpoints, and upgrade only when your product needs more volume.
Create Free API Key