API Endpoints
GET
/healthHealth Check
Verify that the API is reachable and fully operational before making conversion requests. No authentication required.
Request
GET/health
No body · No authResponses
200 Healthy
503 Unhealthy
statushealthy when all systems are operational. unhealthy when the API cannot process conversion requests.
messageHuman-readable summary of the current service state.
timestampISO 8601 UTC time of the health check. Useful for detecting stale cached responses.
Use cases
- 1Uptime monitors. Point your monitoring service at
/healthto get alerted as soon as the API becomes unreachable, without consuming your conversion quota. - 2Load balancer probes. Configure your load balancer health check to use
GET /health. A503response automatically removes the node from rotation. - 3CI / pre-flight checks. Verify the API is reachable at the start of your pipeline before running integration tests that depend on PDF conversion.
lightbulb
The health endpoint is public — no X-API-Key header is required. It does not count against your monthly conversion quota or rate limit.