Call of Duty API
Complete Black Ops 7 CDL esports data: teams, players, matches, tournaments & analytics
https://api.citoapi.com/api/v1Organizations / Teams
List teams, get rosters, transfers, earnings, match results, and map stats
GET/api/v1/cod/orgsOrganizations & TeamsGet current & historical CDL teams with logos, franchise status, and rebrand history.
/api/v1/cod/orgsWidget Preview
CDL organization list
Quick Start
curl "https://api.citoapi.com/api/v1/cod/orgs?franchiseOnly=true&limit=12" \
-H "x-api-key: YOUR_CITO_API_KEY"GET/api/v1/cod/orgs/{slug}Get OrganizationGet a specific organization by slug
/api/v1/cod/orgs/{slug}Widget Preview
Organization profile
Quick Start
curl "https://api.citoapi.com/api/v1/cod/orgs/optic-texas" \
-H "x-api-key: YOUR_CITO_API_KEY"GET/api/v1/cod/orgs/{slug}/rosterOrganization RosterRender a clean current roster for one CDL organization with player identity, role, image, and historical context.
/api/v1/cod/orgs/{slug}/rosterWidget Preview
Current roster
Quick Start
curl "https://api.citoapi.com/api/v1/cod/orgs/optic-texas/roster" \
-H "x-api-key: YOUR_CITO_API_KEY"GET/api/v1/cod/teams/{slug}/matchesTeam MatchesGet a team's match history with pagination and filters
/api/v1/cod/teams/{slug}/matchesWidget Preview
Team Matches
Quick Start
curl "https://api.citoapi.com/api/v1/cod/teams/optic-texas/matches" \
-H "x-api-key: YOUR_CITO_API_KEY"GET/api/v1/cod/teams/{slug}/recent-matchesTeam Recent MatchesGet recently completed matches for one team
/api/v1/cod/teams/{slug}/recent-matchesWidget Preview
Team Recent Matches
Quick Start
curl "https://api.citoapi.com/api/v1/cod/teams/optic-texas/recent-matches" \
-H "x-api-key: YOUR_CITO_API_KEY"GET/api/v1/cod/teams/{slug}/upcoming-matchesTeam Upcoming MatchesGet upcoming scheduled matches for one team
/api/v1/cod/teams/{slug}/upcoming-matchesWidget Preview
Team Upcoming Matches
Quick Start
curl "https://api.citoapi.com/api/v1/cod/teams/optic-texas/upcoming-matches" \
-H "x-api-key: YOUR_CITO_API_KEY"GET/api/v1/cod/teams/{slug}/recordTeam RecordGet match and map record for one team
/api/v1/cod/teams/{slug}/recordWidget Preview
Team Record
Quick Start
curl "https://api.citoapi.com/api/v1/cod/teams/optic-texas/record" \
-H "x-api-key: YOUR_CITO_API_KEY"GET/api/v1/cod/teams/{slug}/map-statsTeam Map StatsGet map/mode pick rates, ban rates, win rates, and score stats
/api/v1/cod/teams/{slug}/map-statsWidget Preview
Team Map Stats
Quick Start
curl "https://api.citoapi.com/api/v1/cod/teams/optic-texas/map-stats" \
-H "x-api-key: YOUR_CITO_API_KEY"GET/api/v1/cod/teams/{slug}/statsTeam StatsGet aggregate team performance stats
/api/v1/cod/teams/{slug}/statsWidget Preview
Team Stats
Quick Start
curl "https://api.citoapi.com/api/v1/cod/teams/optic-texas/stats" \
-H "x-api-key: YOUR_CITO_API_KEY"GET/api/v1/cod/teams/{slug}/transfersTeam TransfersGet roster moves involving one team
/api/v1/cod/teams/{slug}/transfersWidget Preview
Team Transfers
Quick Start
curl "https://api.citoapi.com/api/v1/cod/teams/g2-minnesota/transfers" \
-H "x-api-key: YOUR_CITO_API_KEY"GET/api/v1/cod/teams/{slug}/resultsTeam ResultsGet tournament placement and result rows for one team
/api/v1/cod/teams/{slug}/resultsWidget Preview
Team Results
Quick Start
curl "https://api.citoapi.com/api/v1/cod/teams/optic-texas/results" \
-H "x-api-key: YOUR_CITO_API_KEY"GET/api/v1/cod/orgs/{slug}/earningsOrg EarningsAlias for organization prize earnings
/api/v1/cod/orgs/{slug}/earningsWidget Preview
Org Earnings
Quick Start
curl "https://api.citoapi.com/api/v1/cod/orgs/optic-texas/earnings" \
-H "x-api-key: YOUR_CITO_API_KEY"Players
Player profiles, earnings, transfers, stats, and match history
GET/api/v1/cod/playersPlayer DirectoryList COD players with normalized identity fields so discovery, search, and profile linking feel reliable.
/api/v1/cod/playersWidget Preview
List Players
Quick Start
curl "https://api.citoapi.com/api/v1/cod/players" \
-H "x-api-key: YOUR_CITO_API_KEY"GET/api/v1/cod/players/{id}Player ProfilePull one player profile with identity, current team, earnings summary, roster history, and media fields.
/api/v1/cod/players/{id}Widget Preview
Get Player
Quick Start
curl "https://api.citoapi.com/api/v1/cod/players/shotzzy" \
-H "x-api-key: YOUR_CITO_API_KEY"GET/api/v1/cod/players/{id}/statsPlayer StatsGet aggregate player stats by season, team, and mode where available
/api/v1/cod/players/{id}/statsWidget Preview
Player Stats
Quick Start
curl "https://api.citoapi.com/api/v1/cod/players/shotzzy/stats" \
-H "x-api-key: YOUR_CITO_API_KEY"GET/api/v1/cod/players/{id}/matchesPlayer MatchesGet matches played by one player
/api/v1/cod/players/{id}/matchesWidget Preview
Player Matches
Quick Start
curl "https://api.citoapi.com/api/v1/cod/players/shotzzy/matches" \
-H "x-api-key: YOUR_CITO_API_KEY"GET/api/v1/cod/players/{id}/upcoming-matchesPlayer Upcoming MatchesGet upcoming matches for a player's current team
/api/v1/cod/players/{id}/upcoming-matchesWidget Preview
Player Upcoming Matches
Quick Start
curl "https://api.citoapi.com/api/v1/cod/players/shotzzy/upcoming-matches" \
-H "x-api-key: YOUR_CITO_API_KEY"GET/api/v1/cod/players/{id}/earningsPlayer EarningsGet player earnings history
/api/v1/cod/players/{id}/earningsWidget Preview
Player Earnings
Quick Start
curl "https://api.citoapi.com/api/v1/cod/players/shotzzy/earnings" \
-H "x-api-key: YOUR_CITO_API_KEY"GET/api/v1/cod/players/{id}/transfersPlayer TransfersGet player roster movement history
/api/v1/cod/players/{id}/transfersWidget Preview
Player Transfers
Quick Start
curl "https://api.citoapi.com/api/v1/cod/players/bance/transfers" \
-H "x-api-key: YOUR_CITO_API_KEY"Tournaments
Tournament listings, brackets, results, and matches
GET/api/v1/cod/tournamentsTournament ListDiscover CDL and Challengers events with persistent canonical IDs, source season, normalized season year, dates, and prize data.
/api/v1/cod/tournamentsWidget Preview
List Tournaments
Quick Start
curl "https://api.citoapi.com/api/v1/cod/tournaments" \
-H "x-api-key: YOUR_CITO_API_KEY"GET/api/v1/cod/tournaments/{id}Tournament DetailGet one merged tournament response with results and matches combined across Breaking Point and COD Wiki sources.
/api/v1/cod/tournaments/{id}Widget Preview
Tournament Detail
Quick Start
curl "https://api.citoapi.com/api/v1/cod/tournaments/codwiki-call-of-duty-league-2026-major-3" \
-H "x-api-key: YOUR_CITO_API_KEY"GET/api/v1/cod/tournaments/{id}/resultsTournament ResultsGet placements, prize rows, and team results for a tournament
/api/v1/cod/tournaments/{id}/resultsWidget Preview
Tournament Results
Quick Start
curl "https://api.citoapi.com/api/v1/cod/tournaments/codwiki-call-of-duty-league-2026-major-3/results" \
-H "x-api-key: YOUR_CITO_API_KEY"GET/api/v1/cod/tournaments/{id}/matchesTournament MatchesGet all matches for a tournament
/api/v1/cod/tournaments/{id}/matchesWidget Preview
Tournament Matches
Quick Start
curl "https://api.citoapi.com/api/v1/cod/tournaments/bp-107/matches" \
-H "x-api-key: YOUR_CITO_API_KEY"GET/api/v1/cod/tournaments/{id}/bracketTournament BracketGet bracket rounds and match positions where available
/api/v1/cod/tournaments/{id}/bracketWidget Preview
Tournament Bracket
Quick Start
curl "https://api.citoapi.com/api/v1/cod/tournaments/bp-107/bracket" \
-H "x-api-key: YOUR_CITO_API_KEY"Matches
Match details, map breakdowns, player stats, and live matches
GET/api/v1/cod/matches/liveLive MatchesCheck current COD matches with professional live-state handling so stale rows do not look live.
/api/v1/cod/matches/liveWidget Preview
Live Matches
Quick Start
curl "https://api.citoapi.com/api/v1/cod/matches/live" \
-H "x-api-key: YOUR_CITO_API_KEY"GET/api/v1/cod/matchesMatch HistoryGet paginated historical CoD matches by season, date range, team, or tournament
/api/v1/cod/matchesWidget Preview
Match History
Quick Start
curl "https://api.citoapi.com/api/v1/cod/matches" \
-H "x-api-key: YOUR_CITO_API_KEY"GET/api/v1/cod/matches/recentRecent MatchesGet recently completed CoD matches with pagination and filters
/api/v1/cod/matches/recentWidget Preview
Recent Matches
Quick Start
curl "https://api.citoapi.com/api/v1/cod/matches/recent" \
-H "x-api-key: YOUR_CITO_API_KEY"GET/api/v1/cod/matches/upcomingUpcoming MatchesGet upcoming scheduled CoD matches
/api/v1/cod/matches/upcomingWidget Preview
Upcoming Matches
Quick Start
curl "https://api.citoapi.com/api/v1/cod/matches/upcoming?team=optic-texas" \
-H "x-api-key: YOUR_CITO_API_KEY"GET/api/v1/cod/matches/{id}Match DetailGet one match with teams, score, tournament context, maps, and metadata
/api/v1/cod/matches/{id}Widget Preview
Match Detail
Quick Start
curl "https://api.citoapi.com/api/v1/cod/matches/bp-match-341535" \
-H "x-api-key: YOUR_CITO_API_KEY"GET/api/v1/cod/matches/{id}/mapsMatch MapsGet map-by-map scores, modes, winners, breakdowns, and grouped player stat rows
/api/v1/cod/matches/{id}/mapsWidget Preview
Match Maps
Quick Start
curl "https://api.citoapi.com/api/v1/cod/matches/bp-match-341535/maps" \
-H "x-api-key: YOUR_CITO_API_KEY"GET/api/v1/cod/matches/{id}/player-statsMatch Player StatsGet match-level per-player totals with optional per-map/game breakdowns
/api/v1/cod/matches/{id}/player-statsWidget Preview
Match Player Stats
Quick Start
curl "https://api.citoapi.com/api/v1/cod/matches/bp-match-341535/player-stats" \
-H "x-api-key: YOUR_CITO_API_KEY"GET/api/v1/cod/matches/{id}/maps/{mapNumber}/player-statsMap Player StatsGet one map's player table: kills, deaths, K/D, damage, hill time/objective stats, first bloods, and BP ratings
/api/v1/cod/matches/{id}/maps/{mapNumber}/player-statsWidget Preview
Map Player Stats
Quick Start
curl "https://api.citoapi.com/api/v1/cod/matches/bp-match-341535/maps/1/player-stats" \
-H "x-api-key: YOUR_CITO_API_KEY"CDL League
Black Ops 7 CDL standings, schedule, seasons, and live matches
GET/api/v1/cod/seasonsSeasonsList COD/CDL seasons available in the database
/api/v1/cod/seasonsWidget Preview
Seasons
Quick Start
curl "https://api.citoapi.com/api/v1/cod/seasons" \
-H "x-api-key: YOUR_CITO_API_KEY"GET/api/v1/cod/cdl/standingsCDL StandingsRender current CDL league standings with ranks, records, map records, points, team logos, and freshness metadata.
/api/v1/cod/cdl/standingsWidget Preview
CDL Standings
Quick Start
curl "https://api.citoapi.com/api/v1/cod/cdl/standings" \
-H "x-api-key: YOUR_CITO_API_KEY"GET/api/v1/cod/standingsStandingsAlias for CDL standings
/api/v1/cod/standingsWidget Preview
Standings
Quick Start
curl "https://api.citoapi.com/api/v1/cod/standings" \
-H "x-api-key: YOUR_CITO_API_KEY"GET/api/v1/cod/cdl/scheduleCDL ScheduleGet upcoming Black Ops 7 CDL matches
/api/v1/cod/cdl/scheduleWidget Preview
CDL Schedule
Quick Start
curl "https://api.citoapi.com/api/v1/cod/cdl/schedule" \
-H "x-api-key: YOUR_CITO_API_KEY"GET/api/v1/cod/scheduleScheduleAlias for CDL schedule
/api/v1/cod/scheduleWidget Preview
Schedule
Quick Start
curl "https://api.citoapi.com/api/v1/cod/schedule?team=optic-texas" \
-H "x-api-key: YOUR_CITO_API_KEY"GET/api/v1/cod/cdl/liveCDL LiveGet current live or in-progress CDL matches
/api/v1/cod/cdl/liveWidget Preview
CDL Live
Quick Start
curl "https://api.citoapi.com/api/v1/cod/cdl/live" \
-H "x-api-key: YOUR_CITO_API_KEY"Transfers
Roster moves and player transfers
GET/api/v1/cod/transfersRecent TransfersGet recent player transfers
/api/v1/cod/transfersWidget Preview
Recent Transfers
Quick Start
curl "https://api.citoapi.com/api/v1/cod/transfers?limit=12" \
-H "x-api-key: YOUR_CITO_API_KEY"Leaderboards
Earnings and performance leaderboards by mode
GET/api/v1/cod/leaderboards/earningsEarnings LeaderboardTop earners in CoD esports
/api/v1/cod/leaderboards/earningsWidget Preview
Earnings Leaderboard
Quick Start
curl "https://api.citoapi.com/api/v1/cod/leaderboards/earnings?limit=12" \
-H "x-api-key: YOUR_CITO_API_KEY"GET/api/v1/cod/leaderboards/{mode}Mode LeaderboardGet player leaderboards by hardpoint, snd, control, kd, kills, damage, or earnings
/api/v1/cod/leaderboards/{mode}Widget Preview
Mode Leaderboard
Quick Start
curl "https://api.citoapi.com/api/v1/cod/leaderboards/kd?limit=12" \
-H "x-api-key: YOUR_CITO_API_KEY"Search
Global search across players, teams, and tournaments
GET/api/v1/cod/searchSearchSearch players, orgs, tournaments
/api/v1/cod/searchWidget Preview
Search
Quick Start
curl "https://api.citoapi.com/api/v1/cod/search?q=optic" \
-H "x-api-key: YOUR_CITO_API_KEY"Statistics
Aggregate database statistics
GET/api/v1/cod/statsDatabase StatsGet COD database coverage counts and sync statistics
/api/v1/cod/statsWidget Preview
Database Stats
Quick Start
curl "https://api.citoapi.com/api/v1/cod/stats" \
-H "x-api-key: YOUR_CITO_API_KEY"GET/api/v1/cod/statisticsDatabase Stats AliasAlias for COD database coverage statistics
/api/v1/cod/statisticsWidget Preview
Database Stats Alias
Quick Start
curl "https://api.citoapi.com/api/v1/cod/statistics" \
-H "x-api-key: YOUR_CITO_API_KEY"Analytics
Player trends, clutch factor, head-to-head comparisons
GET/api/v1/cod/analytics/players/{id}/trendsPlayer TrendsGet player stat trends over time
/api/v1/cod/analytics/players/{id}/trendsWidget Preview
Player Trends
Quick Start
curl "https://api.citoapi.com/api/v1/cod/analytics/players/optic-texas/trends" \
-H "x-api-key: YOUR_CITO_API_KEY"GET/api/v1/cod/analytics/players/{id}/clutch-factorPlayer Clutch FactorGet clutch metrics for one player
/api/v1/cod/analytics/players/{id}/clutch-factorWidget Preview
Player Clutch Factor
Quick Start
curl "https://api.citoapi.com/api/v1/cod/analytics/players/optic-texas/clutch-factor" \
-H "x-api-key: YOUR_CITO_API_KEY"GET/api/v1/cod/analytics/head-to-headPlayer Head To HeadCompare two players head-to-head
/api/v1/cod/analytics/head-to-headWidget Preview
Player Head To Head
Quick Start
curl "https://api.citoapi.com/api/v1/cod/analytics/head-to-head?player1=shotzzy&player2=simp" \
-H "x-api-key: YOUR_CITO_API_KEY"GET/api/v1/cod/analytics/compareCompare PlayersCompare multiple COD players across selected stats
/api/v1/cod/analytics/compareWidget Preview
Compare Players
Quick Start
curl "https://api.citoapi.com/api/v1/cod/analytics/compare?players=shotzzy,simp,abezy&stats=kd,kills,damage" \
-H "x-api-key: YOUR_CITO_API_KEY"GET/api/v1/cod/analytics/teams/{slug}/styleTeam StyleGet playstyle analysis for one team
/api/v1/cod/analytics/teams/{slug}/styleWidget Preview
Team Style
Quick Start
curl "https://api.citoapi.com/api/v1/cod/analytics/teams/optic-texas/style" \
-H "x-api-key: YOUR_CITO_API_KEY"GET/api/v1/cod/analytics/teams/head-to-headTeam Head To HeadCompare two teams head-to-head
/api/v1/cod/analytics/teams/head-to-headWidget Preview
Team Head To Head
Quick Start
curl "https://api.citoapi.com/api/v1/cod/analytics/teams/head-to-head?team1=optic-texas&team2=g2-minnesota" \
-H "x-api-key: YOUR_CITO_API_KEY"GET/api/v1/cod/analytics/teams/map-comparisonTeam Map ComparisonCompare team performance by map and mode
/api/v1/cod/analytics/teams/map-comparisonWidget Preview
Team Map Comparison
Quick Start
curl "https://api.citoapi.com/api/v1/cod/analytics/teams/map-comparison?team1=optic-texas&team2=g2-minnesota" \
-H "x-api-key: YOUR_CITO_API_KEY"GET/api/v1/cod/analytics/leaderboard/{stat}Analytics LeaderboardGet an analytics leaderboard for one stat
/api/v1/cod/analytics/leaderboard/{stat}Widget Preview
Analytics Leaderboard
Quick Start
curl "https://api.citoapi.com/api/v1/cod/analytics/leaderboard/kd?limit=12" \
-H "x-api-key: YOUR_CITO_API_KEY"Other COD Endpoints
Additional discovery or compatibility paths.
GET/api/v1/codCOD OverviewDiscover Call of Duty endpoint coverage, counts, and available data surfaces
/api/v1/codWidget Preview
COD Overview
Quick Start
curl "https://api.citoapi.com/api/v1/cod" \
-H "x-api-key: YOUR_CITO_API_KEY"