GET
/
health
curl --request GET \
  --url 'http://localhost:2003/api/v1/health'
{
  "success": true,
  "data": "ok"
}

A simple endpoint to check if the API server is up and running. This endpoint does not require authentication.

curl --request GET \
  --url 'http://localhost:2003/api/v1/health'
{
  "success": true,
  "data": "ok"
}

Response

200 - application/json
Successful response
success
boolean
Example:

true