Skip to main content
GET
/
v1
/
api
/
health
Health check
curl --request GET \
  --url https://api.dotprediction.io/v1/api/health \
  --header 'X-API-Key: <api-key>'
{
  "status": "<string>",
  "checks": [
    {
      "name": "<string>",
      "status": "<string>"
    }
  ],
  "uptime_seconds": 123,
  "version": "<string>"
}

Authorizations

X-API-Key
string
header
required

API key for authentication. Generate one via the dashboard or the /v1/api/auth/api-keys endpoint.

Response

Service health status.

status
string

Overall health status.

checks
object[]

Individual health checks (e.g., database).

uptime_seconds
number

API uptime in seconds.

version
string

API version.