Match and map stats

Call of Duty match stats APIbuilt for match centers.

Turn CDL matches into product-ready pages with series status, map scores, team totals, and player stat breakdowns from one API.

Match detailsMap scoresTeam totalsPlayer rows

30-60s

live CDL polling during match windows

500

free API calls/month to start

$25

starter paid plan, no contract

Developer endpoints

Match data your users can inspect

Use the latest-match sample to show visitors the kind of structured match and map data your app can consume.

GET/v1/cod/matches/{matchId}

Series-level match details with status, teams, score, and tournament context.

GET/v1/cod/matches/{matchId}/maps

Map-by-map results, modes, scores, winners, and available breakdown data.

GET/v1/cod/matches/{matchId}/player-stats?includeMaps=true

Player totals plus map-level rows for deeper post-match analysis.

Fetch map-level match stats

const response = await fetch("https://api.citoapi.com/api/v1/cod/matches/{matchId}/maps", {
  headers: {
    "x-api-key": process.env.CITO_API_KEY
  }
});

const data = await response.json();
console.log(data);

Better than stitching spreadsheets together

The match endpoints are designed around real app screens: match overview, map list, and player stat tables.

You can request player map breakdowns when you need deeper analysis and skip them when you need lighter responses.

Authenticated endpoints keep full data behind your API key while public marketing samples stay curated and safe.

Use cases

Built for developers shipping COD products

Match centers

Build pages that show series score, each map result, mode, selected map, and team/player totals.

Post-match recaps

Generate player stat tables and map summaries after CDL series conclude.

Analytics databases

Pull structured rows into your own warehouse for models, rankings, or dashboards.

Questions developers ask

Can I get map-level Call of Duty stats?

Yes. Cito API exposes map results and supports player stat breakdowns with includeMaps=true for match player stats.

Can I use this during live matches?

Yes. Live match endpoints update during CDL windows, with completed maps becoming available as data syncs.

Is this only for Black Ops 7?

The current CDL product focuses on Black Ops 7 season data, with broader COD coverage available where supported.

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