Endpoints
API Status
GET
/v1/statusAPI keyReturns API health, version, server time and the rate limits applied to your key. Useful for health checks and connection diagnostics.
Request
cURL
curl https://api.openoddsapi.com/v1/status \
-H "X-API-Key: sk_test_your_key_here"JavaScript
const res = await fetch("https://api.openoddsapi.com/v1/status", {
headers: { "X-API-Key": "sk_test_your_key_here" }
});
const status = await res.json();
console.log(status);Python
import requests
res = requests.get(
"https://api.openoddsapi.com/v1/status",
headers={"X-API-Key": "sk_test_your_key_here"},
)
print(res.json())JSON
{
"status": "ok",
"api_version": "v1",
"server_time": "2026-08-07T02:15:00Z",
"rate_limit": {
"burst_per_minute": 60,
"requests_per_day": 10000
},
"sports_active": 5
}status is ok, degraded or maintenance. A degraded status means one or more upstream bookmaker feeds are delayed; odds for those books are stale but served.