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

# Get API health

> Returns the health status of the API



## OpenAPI

````yaml GET /health
openapi: 3.1.0
info:
  title: UTrack API
  version: 1.0.0
  description: API for fetching Twitter/X tweet data and managing WebSocket connections
servers:
  - url: https://api.utrack.club
    description: Production server
security: []
tags:
  - name: Health
    description: Health check endpoints
  - name: Tweets
    description: Twitter/X tweet data endpoints
paths:
  /health:
    get:
      tags:
        - Health
      summary: Health check
      description: Returns the health status of the API
      operationId: healthCheck
      responses:
        '200':
          description: Service is healthy
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HealthResponse'
components:
  schemas:
    HealthResponse:
      type: object
      properties:
        status:
          type: string
          example: ok
      required:
        - status

````