Skip to main content
GET
/
health
Health Check
curl --request GET \
  --url https://api.aries.com/health \
  --header 'Authorization: Bearer <token>'
{
  "status": "healthy"
}
This endpoint does not require authentication and can be used to verify service availability.

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Response

200 - application/json

Service is healthy

status
string

Service health status

Example:

"healthy"