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.

Open AI Skill

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.

Key Information/API Reference

API Reference

Complete reference for all Cito API endpoints, parameters, and response formats.

Base URL
https://api.citoapi.com/api/v1

Authentication

API keys and security

Webhooks

Real-time event subscriptions

Errors & Rate Limits

Handling errors and rate limiting

All Endpoints

MethodEndpointDescription
GET/healthAPI health check
GET/fortnite/matches/liveLive Fortnite competitive events
GET/fortnite/tournaments/liveLive Fortnite tournaments and leaderboards
GET/fortnite/players/top-earnersTop Fortnite earners
GET/fortnite/players/{identifier}Fortnite player profile and earnings
GET/fortnite/tournamentsFortnite tournaments
GET/fortnite/shopCurrent Fortnite item shop
GET/cod/matches/liveLive Black Ops 7 CDL matches
GET/cod/matches/{id}/player-statsCOD match/game-level player stats
GET/cod/players/{username}CoD player stats
GET/lol/matches/liveLive LoL matches
GET/lol/players/{username}LoL player stats
GET/dota2/matches/liveLive Dota 2 matches
GET/apex/algs/eventsALGS events and scores
GET/ufc/eventsUFC events and fight cards
GET/ufc/bouts/{boutId}/statsUFC bout and round stats
POST/webhooksRegister a webhook
GET/webhooksList your webhooks
DELETE/webhooks/{id}Delete a webhook

Request Format

Headers

All requests must include an x-api-key header with your API key and a Content-Type of application/json.

Query Parameters

Filter and paginate results using query parameters like ?region=EU&limit=20&page=1.

Path Parameters

Replace placeholders like {username} and {id} with actual values.

Response Format

All responses are JSON with a consistent structure:

// Success response
{
  "data": { ... },
  "pagination": {
    "page": 1,
    "total_pages": 10,
    "total_results": 195
  }
}

// Error response
{
  "error": {
    "type": "not_found",
    "message": "Player not found",
    "code": "player_not_found"
  }
}