Skip to main content
GET
/
health
Health check
curl --request GET \
  --url https://agent-evalserver-production.up.railway.app/health
{
  "status": "healthy",
  "up": 1,
  "timestamp": "2026-06-03T08:09:53.831Z",
  "uptime": 144490
}

Health Check

Check whether the evaluation API service is reachable. Use this endpoint for uptime checks, deployment verification, and integration smoke tests before calling authenticated Evaluation API routes.

Endpoint

GET /health

Authentication

No API key is required.

Success Response

Returns 200 OK with the current service status and uptime.
{
  "status": "healthy",
  "up": 1,
  "timestamp": "2026-06-03T08:09:53.831Z",
  "uptime": 144490
}

Response

200 - application/json

Service is healthy

Basic service health signal.

status
string
Example:

"healthy"

up
integer
Example:

1

timestamp
string<date-time>
Example:

"2026-06-03T08:09:53.831Z"

uptime
integer

Process uptime in seconds.

Example:

144490