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

# Check

> Check the health status of the TimeTracker API and database connectivity



## OpenAPI

````yaml GET /api/health
openapi: 3.0.3
info:
  title: Timetracker API
  description: API for Timetracker application with Zapier integration support
  version: 1.0.0
  contact:
    name: Timetracker API Support
servers:
  - url: https://app.timetracker.in
    description: Production server
security: []
tags:
  - name: Health
    description: Health check endpoints
  - name: Billing
    description: Billing and invoice management
  - name: Zapier Integration
    description: Zapier integration endpoints
  - name: Clients
    description: Client management operations
  - name: Tags
    description: Tag management operations
  - name: Webhooks
    description: Webhook subscription management
  - name: Triggers
    description: Zapier trigger endpoints for fallback data retrieval
paths:
  /api/health:
    get:
      tags:
        - Health
      summary: Health Check
      description: >-
        The health check endpoint provides real-time status information about
        the TimeTracker API service and its database connectivity. Use this
        endpoint to monitor system health, verify service availability, and
        diagnose connection issues.
      responses:
        '200':
          description: API is healthy
          content:
            application/json:
              schema:
                type: object
                properties:
                  status:
                    type: string
                    example: healthy
                  timestamp:
                    type: string
                    format: date-time
                    example: '2024-01-01T00:00:00.000Z'
                  service:
                    type: string
                    example: timetracker-api
                  version:
                    type: string
                    example: 1.0.0
        '503':
          description: API is unhealthy
          content:
            application/json:
              schema:
                type: object
                properties:
                  status:
                    type: string
                    example: unhealthy
                  timestamp:
                    type: string
                    format: date-time
                  service:
                    type: string
                  error:
                    type: string
                    example: Database connection failed

````