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

# Health Check

> Confirmation that the service can respond to requests



## OpenAPI

````yaml https://api.chunkr.ai/docs/openapi.json get /health
openapi: 3.1.0
info:
  title: Chunkr API
  description: >-
    API service for document layout analysis and chunking to convert document
    into RAG/LLM-ready data.
  contact:
    name: Chunkr
    url: https://chunkr.ai
    email: ishaan@lumina.sh
  license:
    name: ''
  version: 2.62.0
servers:
  - url: https://api.chunkr.ai
    description: Chunkr API
security: []
tags:
  - name: Files
    description: Endpoints for uploading and managing files
  - name: Health
    description: Endpoint for checking the health of the service.
  - name: Tasks
    description: Endpoints for uploading and managing tasks
  - name: Webhook
    description: Endpoints for managing webhooks
paths:
  /health:
    get:
      tags:
        - Health
      summary: Health Check
      description: Confirmation that the service can respond to requests
      operationId: health_check
      responses:
        '200':
          description: >-
            Confirmation that the service can respond to requests and the
            version of the service
          content:
            text/plain:
              schema:
                type: string

````