Skip to main content
GET
/
health
Liveness probe
curl --request GET \
  --url https://quiet-bloodhound-531.convex.site/health
{
  "ok": true
}

Documentation Index

Fetch the complete documentation index at: https://docs.o1.exchange/llms.txt

Use this file to discover all available pages before exploring further.

Returns { "ok": true } when the service is reachable. No authentication required.
This endpoint is public — it does not require an x-api-key header.

Request

GET {API_URL}/health

Response

{ "ok": true }

When to use this

CI / monitoring

Schedule periodic health checks from your monitoring system. Treat anything other than 200 { "ok": true } as down.

Connectivity self-test

Use as the first call in an integration test to confirm DNS, TLS, and API key plumbing without spending quota on a real quote.
curl https://quiet-bloodhound-531.convex.site/health

Response

200 - application/json

Service is up

ok
boolean
required