Skip to main content

Health Check

Returns the V6 server health, uptime, and cache statistics. No authentication required.
GET /health
curl "https://api.sportsapipro.com/v6/football/health"

Response

{
  "status": "ok",
  "uptime": 12345.6,
  "cache": { "size": 1024, "active": 812 }
}
FieldTypeDescription
statusstring"ok" if the server is running
uptimenumberSeconds since last restart
cache.sizenumberTotal cached entries
cache.activenumberNon-expired cached entries

Cache Diagnostics

GET /api/v1/cache/stats
Returns detailed cache hit/miss counters and eviction stats. Authenticated.
curl -H "x-api-key: YOUR_API_KEY" \
  "https://api.sportsapipro.com/v6/football/cache/stats"
Last modified on June 29, 2026