Esta página se muestra en inglés. La versión en español está en camino.
Health check
GET Live
Liveness probe for the API.
GET https://api.quotrr.com/v1/health
Returns a small JSON object when the API is up. Use it for uptime checks and as a quick connectivity test before you build against the other endpoints.
Authentication
None. Open to anyone.
No scope required.
Request
No parameters.
Example request
curl -s https://api.quotrr.com/v1/health
Response
| Field | Type | Description |
|---|---|---|
| ok | boolean | True when the API is serving requests. |
Example response
{
"ok": true
}