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

# Heart Beat Check For Trata Backend

> Heart Beat check to check the health of Trata Backend



## OpenAPI

````yaml openapi.json get /status
openapi: 3.1.0
info:
  title: Trata AI API
  description: >-
    Human like conversation to answer calls, drive engagement, automate
    follow-ups & schedule bookings 24/7  with end to end integrations ensuring
    you never miss a sales enquiry.
  version: 1.0.0
servers:
  - url: https://api.trata.ai
    description: Production
  - url: http://localhost:8000
    description: Development
security: []
paths:
  /status:
    get:
      tags:
        - Health
      summary: Heart Beat Check For Trata Backend
      description: Heart Beat check to check the health of Trata Backend
      operationId: status_status_get
      responses:
        '200':
          description: Trata APIs are healthy
          content:
            application/json:
              schema:
                type: object
                title: Response Status Status Get
              example:
                status: HEALTHY

````