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

# Health check

> Check if the server is healthy and running.



## OpenAPI

````yaml /docs/reference/openapi.json get /health
openapi: 3.1.0
info:
  description: >-
    The HTTP API of an agent served with `omniserve run --agent agent.py`: runs,
    approvals, budgets, background tasks, sessions and the evidence of every
    run.
  title: OmniServe
  version: latest
servers:
  - description: omniserve run, locally
    url: http://localhost:8000
security: []
paths:
  /health:
    get:
      tags:
        - Health
      summary: Health check
      description: Check if the server is healthy and running.
      operationId: health_check_health_get
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HealthResponse'
          description: Successful Response
components:
  schemas:
    HealthResponse:
      description: Response model for health check endpoint.
      properties:
        agent_name:
          description: Name of the agent
          title: Agent Name
          type: string
        status:
          description: Health status ('healthy' or 'unhealthy')
          title: Status
          type: string
        uptime:
          description: Server uptime in seconds
          title: Uptime
          type: number
        version:
          default: 0+unknown
          description: OmniCoreAgent version
          title: Version
          type: string
      required:
        - status
        - agent_name
        - uptime
      title: HealthResponse
      type: object

````