> ## Documentation Index
> Fetch the complete documentation index at: https://docs.rippletide.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Health check

> Check whether the evaluation API service is reachable.

# 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

```http theme={null}
GET /health
```

## Authentication

No API key is required.

## Success Response

Returns `200 OK` with the current service status and uptime.

```json theme={null}
{
  "status": "healthy",
  "up": 1,
  "timestamp": "2026-06-03T08:09:53.831Z",
  "uptime": 144490
}
```


## OpenAPI

````yaml get /health
openapi: 3.0.3
info:
  title: Rippletide Agent Evaluation API
  description: >-
    Public API for evaluation agents, test prompts, test results, and knowledge
    imports
  version: 1.0.0
  contact:
    name: Rippletide API Support
servers:
  - url: https://agent-evalserver-production.up.railway.app
    description: Production server
  - url: http://localhost:3001
    description: Development server
security: []
paths:
  /health:
    get:
      tags:
        - Health
      summary: Health check
      description: >-
        Check whether the evaluation API service is reachable. This endpoint is
        useful for uptime checks, deployment verification, and integration smoke
        tests.
      responses:
        '200':
          description: Service is healthy
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HealthResponse'
              examples:
                healthy:
                  summary: Healthy service
                  value:
                    status: healthy
                    up: 1
                    timestamp: '2026-06-03T08:09:53.831Z'
                    uptime: 144490
components:
  schemas:
    HealthResponse:
      type: object
      description: Basic service health signal.
      properties:
        status:
          type: string
          example: healthy
        up:
          type: integer
          example: 1
        timestamp:
          type: string
          format: date-time
          example: '2026-06-03T08:09:53.831Z'
        uptime:
          type: integer
          description: Process uptime in seconds.
          example: 144490

````