Simple liveness probe for the API. Free, no authentication required.
GET /api/v1/health
Simple liveness probe. Does not require authentication and never consumes credits.
Code examples
cURLbashcurl "https://kooperativa.io/api/v1/health"
JavaScriptjsconst res = await fetch("https://kooperativa.io/api/v1/health");
const { ok } = await res.json();
if (!ok) throw new Error("API is down");
Response
{ "ok": true }