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

# GET /health — Liveness Check for Sportrix Data API

> GET /health returns a simple status check for the Sportrix Data API. No authentication required — use it to verify the service is reachable.

`GET /health` is a liveness probe that confirms the Sportrix Data API is reachable and accepting connections. Use it for uptime monitoring, health checks in your infrastructure, or simply to verify your network path before making authenticated requests.

## Endpoint

```
GET https://api.sportrixdata.com/api/health
```

## Authentication

<Note>
  This is the only endpoint that does not require an `X-API-Key` header. You can call it without any credentials.
</Note>

## Example Request

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

## Response

A successful response returns HTTP `200` with the following body:

```json theme={null}
{ "status": "ok" }
```
