Call of Duty Discord bot APIfor CDL communities.
Give your server live CDL scores, schedules, standings, match recaps, and player stat commands without running your own scraper.
30-60s
live CDL polling during match windows
500
free API calls/month to start
$25
starter paid plan, no contract
Developer endpoints
Endpoints that fit bot commands
Create commands like /cdl-live, /cdl-standings, /cod-player, and /match-stats with simple REST requests.
/v1/cod/matches/livePower a /cdl-live command with current match state and score.
/v1/cod/cdl/standingsReturn standings in a compact embed for your community.
/v1/cod/matches/{matchId}/player-statsShow top performers and stat rows after a match.
Discord bot command example
const response = await fetch("https://api.citoapi.com/api/v1/cod/matches/live", {
headers: {
"x-api-key": process.env.CITO_API_KEY
}
});
const data = await response.json();
console.log(data);Skip scraper maintenance
Discord bot owners should not have to repair selectors every time a stats site changes its frontend.
Cito gives your bot one API key, predictable limits, and JSON that is easy to format into embeds.
Free starter access is enough to prototype community commands before paying for higher volume.
Use cases
Built for developers shipping COD products
Live match commands
Let users ask for current CDL score and map state during match windows.
Standings embeds
Post current standings and team records after qualifiers, majors, and events.
Player stat cards
Render kills, deaths, damage, and map stat rows into compact Discord embeds.
Questions developers ask
Can I use Cito API in a Discord bot?
Yes. The API is standard REST JSON and works with Discord.js, Python bots, and any backend that can make HTTP requests.
Do I need to expose my API key in the bot?
No. Keep the Cito API key on your server or bot runtime, never in client-side code.
Is the free tier enough for testing?
Yes. The free tier is designed for prototyping and small tests before upgrading.
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