GET
https://api.wazapin.id
/
v1
/
health
Health check
curl --request GET \
  --url https://api.wazapin.id/v1/health \
  --header 'X-Api-Key: <api-key>'

Endpoint

GET /v1/health Use this endpoint to verify service availability before sending production traffic.

Authentication

No authentication is required.
curl -X GET "https://api.wazapin.id/v1/health" \
  -H "Accept: application/json"
200 OK
{
  "data": {
    "status": "healthy"
  }
}
500 Error
{
  "title": "Internal Server Error",
  "status": 500,
  "detail": "unexpected error"
}

When to use

  • Run as startup/readiness probe in your service.
  • Run before operational workflows such as campaign sends.
  • Use periodic checks for uptime monitoring.