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.
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.
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
| Region | Code | Endpoint | Avg Latency |
|---|---|---|---|
| North America East | NA-EAST | na-east.api.citoapi.com | ~20ms |
| North America West | NA-WEST | na-west.api.citoapi.com | ~25ms |
| Europe | EU | eu.api.citoapi.com | ~30ms |
| Asia Pacific | ASIA | asia.api.citoapi.com | ~45ms |
| Oceania | OCE | oce.api.citoapi.com | ~50ms |
| Brazil | BR | br.api.citoapi.com | ~40ms |
| Middle East | ME | me.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
When querying player stats or tournament data that spans multiple regions, use the default api.citoapi.com endpoint.
When building real-time applications that need the lowest latency, use the regional endpoint closest to your servers.
If a regional endpoint is slow or unavailable, fall back to the default endpoint which will automatically route to a healthy region.