REST

Health

Check service availability. This endpoint does not require authentication and is safe to poll for uptime monitoring.

GET/api/v1/health

Service health check

Returns the current service status and API version. This endpoint does not require authentication and is safe to poll for uptime monitoring.

Request

bash
curl -X GET \
  'https://letoseo.com/api/v1/health' \
  -H 'Authorization: Bearer sk_live_xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx'

Responses

200Service is operational.
json
{
  "status": "ok",
  "version": "1.0.0",
  "service": "letoseo"
}