Skip to main content

Documentation Index

Fetch the complete documentation index at: https://quintsecurity.mintlify.app/llms.txt

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

Health Check Endpoints

Health checks do not require authentication. They verify that the Quint cloud API is operational.

Endpoints

GET /health

Liveness check returning {"status": "ok"}

GET /ready

Readiness check returning {"status": "ready"}

Liveness Check

curl https://api.quintai.dev/health
{"status": "ok"}
Use this for load balancer health probes and uptime monitoring.

Readiness Check

curl https://api.quintai.dev/ready
{"status": "ready"}
The readiness endpoint confirms the API is ready to accept traffic, including that database connections and dependencies are available.