Skip to main content
GET
/
actuator
/
health
API Status
curl --request GET \
  --url https://api.polyhistorical.com/actuator/health
{
  "status": "<string>"
}

API Status

Use the health check endpoint to verify that the PolyHistorical API is reachable. This endpoint is useful for uptime monitoring, deployment checks, and client-side service readiness checks.

Request

https://api.polyhistorical.com/actuator/health

Authentication

This endpoint does not require an API key.

Response

status
string
Current API health status. UP means the API is available.

Example

cURL
curl "https://api.polyhistorical.com/actuator/health"

Response

{
  "status": "UP"
}