GET /health/live
Cheapest possible probe — process is up.
Tags: health
Responses
200
Code samples
TypeScript
TypeScript
import { firecase } from "@firecase/sdk";
const result = await firecase.get("/health/live");
console.log(result);Python
Python
import firecase
result = firecase.get("/health/live")
print(result)curl
Bash
curl -X GET https://api.firecase.ai/health/live \
-H "Authorization: Bearer $FIRECASE_API_KEY" \
-H "Content-Type: application/json"