Health

Health Check

Check API connectivity and service availability. This endpoint does not require authentication.

SDK Usage:

const health = await client.healthCheck();
// { success: true, status: 200, data: "success" }
get/health

Response

API is healthy

successboolean
statusinteger
datastring

Example response

{
  "success": true,
  "status": 200,
  "data": "success"
}

Changes