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

# Health check

> Check the health status of the API.



## OpenAPI

````yaml /api-reference/openapi.yaml get /health
openapi: 3.0.0
info:
  title: Agent-CoreX API
  description: Dynamic tool retrieval and execution for AI agents using MCP servers
  version: 1.0.0
  contact:
    name: Agent-CoreX Support
    email: support@agent-corex.com
    url: https://github.com/anthropics/agent-corex
  license:
    name: Apache 2.0
    url: https://www.apache.org/licenses/LICENSE-2.0.html
servers:
  - url: https://api.agent-corex.com/v1
    description: Production API
  - url: https://staging-api.agent-corex.com/v1
    description: Staging API
  - url: http://localhost:3000/v1
    description: Local development
security:
  - bearerAuth: []
  - apiKey: []
tags:
  - name: Tools
    description: Tool discovery and execution
  - name: Servers
    description: MCP server management
  - name: System
    description: System and health endpoints
externalDocs:
  description: Full documentation
  url: https://docs.agent-corex.com
paths:
  /health:
    get:
      tags:
        - System
      summary: Health check
      description: Check the health status of the API.
      operationId: healthCheck
      responses:
        '200':
          description: API is healthy
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HealthResponse'
      security: []
components:
  schemas:
    HealthResponse:
      type: object
      properties:
        status:
          type: string
          enum:
            - healthy
            - degraded
            - unhealthy
        timestamp:
          type: string
          format: date-time
        uptime_seconds:
          type: integer
        version:
          type: string
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT
      description: JWT token obtained from dashboard
    apiKey:
      type: apiKey
      in: header
      name: Authorization
      description: API key in format "Bearer YOUR_API_KEY"

````