GET /v1/health is an unauthenticated liveness probe. Use it for uptime checks and to read the API’s current schema version.
This is the only endpoint that does not require an Authorization header.

Request

curl https://api.aisearchapi.dev/v1/health

Response

{
  "status": "ok",
  "schemaVersion": "1.0"
}
status
string
Liveness indicator. ok when the API is serving requests.
schemaVersion
string
The current envelope/response schema version. This same value is returned as the X-AISearch-Version header on every response, so you can pin or detect schema changes without calling this endpoint.
Point your uptime monitor here. A 200 with status: "ok" means the API is live. Because it takes no auth, you can probe it from anywhere without exposing your API key.