Synchronisation
Accède aux données ranked Warzone pour créer bots, overlays et dashboards avec notre API REST.
REST · JSON · 100 req/min
https://rankeddb.comAll API requests require an API key passed via the X-API-Key header.
API keys are delivered manually by the RankedDB team. Reach out on Discord to request access.
curl -H "X-API-Key: rdb_live_your_key_here" \ https://rankeddb.com/api/v1/public/players
const API_KEY = "rdb_live_your_key_here";
// Fetch top 10 EU players
const res = await fetch(
"https://rankeddb.com/api/v1/public/players?limit=10®ion=EU",
{ headers: { "X-API-Key": API_KEY } }
);
const { data, meta } = await res.json();
console.log(`Top ${data.length} of ${meta.total} players`);
data.forEach(p => console.log(`#${p.rank} ${p.handle} — ${p.sr} SR`));All responses return JSON. List endpoints wrap results in data with pagination meta. Detail endpoints return a single object in data.
{
"data": [ ... ],
"meta": {
"total": 1284,
"limit": 50,
"offset": 0
}
}{
"data": {
"handle": "Player1",
"sr": 12500,
...
}
}Each API key has its own rate limit (default: 100 requests per minute). When exceeded, you'll receive a 429 response.
X-RateLimit-LimitMax requests per window (100)X-RateLimit-RemainingRemaining requests in current windowX-RateLimit-ResetUnix timestamp when the window resetsRetry-AfterSeconds to wait (on 429 responses){ "error": "Player not found" }The rankTier field uses these values, from lowest to highest:
All public API endpoints include CORS headers. You can call the API from any origin — browser apps, Discord bots, mobile apps, etc.