> ## Documentation Index
> Fetch the complete documentation index at: https://docs.sportsapipro.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Health Check

> Server status and uptime

## GET /health

Returns server status. **No authentication required.**

```bash theme={null}
curl https://api.sportsapipro.com/v5/health
```

### Response

```json theme={null}
{
  "status": "ok",
  "version": "5.0.0",
  "requests": 42,
  "successes": 0,
  "errors": 0,
  "cacheHits": 0,
  "startTime": "2026-06-21T13:44:46.005Z",
  "uptime": 3600,
  "cacheSize": 15
}
```

<ResponseField name="status" type="string">`"ok"` when the server is running.</ResponseField>
<ResponseField name="version" type="string">API version string.</ResponseField>
<ResponseField name="uptime" type="number">Seconds since last restart.</ResponseField>
<ResponseField name="requests" type="number">Total requests served since startup.</ResponseField>
<ResponseField name="cacheHits" type="number">Number of responses served from cache.</ResponseField>
<ResponseField name="cacheSize" type="number">Current number of entries in the in-memory cache.</ResponseField>

<Note>Use `/health` for uptime monitoring. The endpoint never requires an API key, so it is safe to call from probes that have no credentials.</Note>
