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

# Health Check

> Health Check.

### Response

<ResponseField name="status" type="string">
  Health status
</ResponseField>

<ResponseField name="service" type="string">
  Service name
</ResponseField>

<ResponseField name="time" type="string">
  Current UTC timestamp
</ResponseField>

<ResponseExample>
  ```json 200 theme={null}
  {
    "status": "healthy",
    "service": "integration_service",
    "time": "2026-03-14T12:00:00Z"
  }
  ```
</ResponseExample>


## OpenAPI

````yaml GET /health
openapi: 3.0.1
info:
  title: Agni API
  version: 1.0.0
  description: >-
    Agni API for managing agents, tools, widget settings, telephony, and
    integrations.
servers:
  - url: https://api.ravan.ai
security:
  - X-Api-Key: []
tags:
  - name: AgentService
  - name: AgentToolService
  - name: WidgetSettingsService
  - name: PhoneService
  - name: AppointmentService
  - name: GHLService
  - name: CalComService
  - name: CampaignService
  - name: ContactService
  - name: CallingService
  - name: RAGService
  - name: ModelService
  - name: HealthService
paths:
  /health:
    get:
      tags:
        - HealthService
      summary: Health Check
      operationId: HealthCheck
      responses:
        '200':
          description: Service is healthy
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HealthResponse'
      security: []
components:
  schemas:
    HealthResponse:
      type: object
      properties:
        status:
          type: string
          description: Health status
          example: healthy
        service:
          type: string
          description: Service name
          example: integration_service
        time:
          type: string
          description: Current UTC timestamp
  securitySchemes:
    X-Api-Key:
      type: apiKey
      in: header
      name: X-Api-Key

````