01
Endpoint
Check API health
Check API availability without an API key.
GET/api/v1/health
Request
Content-Type
application/jsonNo body parameters.
Errors
Example request
Request example
curl https://onlineresumeparser.com/api/v1/healthResponse
The endpoint is intentionally public so it can be used by uptime monitors and deployment checks. status is healthy or unhealthy, skills_loaded is the number of skills loaded at startup, and timestamp is an ISO 8601 UTC string. The endpoint responds with HTTP 200 and exposes readiness through status; the process exits if startup initialization fails.
{
"status": "healthy",
"service": "HireLayer API",
"skills_loaded": 664,
"timestamp": "2026-09-07T13:05:47.172Z"
}Allowed values in response
statushealthyunhealthyThe catalog readiness state reported by the initialized service.