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/Regional Endpoints

Regional Endpoints

Cito API is deployed globally. Use regional endpoints for lower latency when querying region-specific data.

Default Endpoint

The default endpoint automatically routes to the nearest region:

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

This is recommended for most use cases. Only use regional endpoints if you need guaranteed low latency for a specific region.

Available Regions

RegionCodeEndpointAvg Latency
North America EastNA-EASTna-east.api.citoapi.com~20ms
North America WestNA-WESTna-west.api.citoapi.com~25ms
EuropeEUeu.api.citoapi.com~30ms
Asia PacificASIAasia.api.citoapi.com~45ms
OceaniaOCEoce.api.citoapi.com~50ms
BrazilBRbr.api.citoapi.com~40ms
Middle EastMEme.api.citoapi.com~55ms

Usage Examples

Using Regional Endpoints

// Query EU endpoint for European matches
const response = await fetch('https://eu.api.citoapi.com/api/v1/lol/live', {
  headers: { 'x-api-key': process.env.CITO_API_KEY }
});

// Query NA-EAST for North American Call of Duty data
const response = await fetch('https://na-east.api.citoapi.com/api/v1/cod/matches/live', {
  headers: { 'x-api-key': process.env.CITO_API_KEY }
});

Region Parameter

You can also use the region parameter with the default endpoint:

// Filter by region using query parameter
curl "https://api.citoapi.com/api/v1/cod/matches/live?region=EU" \
  -H "x-api-key: cito_live_your_key"

Best Practices

Use the default endpoint for global data

When querying player stats or tournament data that spans multiple regions, use the default api.citoapi.com endpoint.

Use regional endpoints for live matches

When building real-time applications that need the lowest latency, use the regional endpoint closest to your servers.

Implement fallback logic

If a regional endpoint is slow or unavailable, fall back to the default endpoint which will automatically route to a healthy region.