GET /health

Tags: health

Responses

200

JSON
{
  "$ref": "#/components/schemas/HealthResponse"
}

503

Code samples

TypeScript

TypeScript
import { firecase } from "@firecase/sdk";

const result = await firecase.get("/health");
console.log(result);

Python

Python
import firecase

result = firecase.get("/health")
print(result)

curl

Bash
curl -X GET https://api.firecase.ai/health \
  -H "Authorization: Bearer $FIRECASE_API_KEY" \
  -H "Content-Type: application/json"