Skip to main content
The GET /health endpoint lets you verify that the Dolva API is reachable and responding. It requires no authentication and returns an empty JSON object on success. Use it for uptime checks, pre-flight validation, or monitoring integrations.

Endpoint

GET https://api.dolva.ai/health

Authentication

None required. This endpoint is publicly accessible.

Response

Status: 200 OK
Content-Type: application/json
200 OK
{}
An empty JSON object is returned when the API is healthy and available.

Example Request

curl https://api.dolva.ai/health

Use Cases

  • Pre-flight check — Verify connectivity before sending a batch of audio files
  • Uptime monitoring — Integrate into your monitoring system (e.g., Pingdom, Datadog) to alert on API downtime
  • CI/CD validation — Add a health check step to your deployment pipeline
Because this endpoint requires no authentication, it is safe to call from unauthenticated contexts such as public status pages or load balancer health probes.