Skip to main content
GET
/
health
Health Check
curl --request GET \
  --url http://localhost:8080/health \
  --header 'Authorization: Basic <encoded-value>'
{
  "status": "success",
  "data": true
}

Authorizations

Authorization
string
header
required

Basic authentication using base64 encoded API key and secret. Format: Authorization: Basic <base64(api_key:api_secret)>

Response

Health check passed

status
string
Example:

"success"

data
boolean
Example:

true