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

# Get health



## OpenAPI

````yaml https://sahabah-prod.devops.arabiaweather.com/openapi.json get /health
openapi: 3.1.0
info:
  title: sahabah-api
  description: ''
  license:
    name: ''
  version: 1.0.0
servers:
  - url: https://sahabah-prod.devops.arabiaweather.com
    description: Production API server
  - url: https://sahabah-stg.devops.arabiaweather.com
    description: Staging API server
security: []
tags:
  - name: System
    description: System health and monitoring endpoints
  - name: Aviation
    description: Aviation data parsing endpoints
  - name: Weather
    description: Weather data and forecasting endpoints
  - name: Reports
    description: Forecast accuracy analysis and reporting endpoints
paths:
  /health:
    get:
      tags:
        - System
      operationId: health_check
      responses:
        '200':
          description: Health check successful
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HealthApiResponse'
components:
  schemas:
    HealthApiResponse:
      type: object
      required:
        - data
        - timestamp
        - request_id
        - build
      properties:
        build:
          type: string
        data:
          $ref: '#/components/schemas/HealthStatus'
        request_id:
          type: string
        timestamp:
          type: string
          format: date-time
    HealthStatus:
      type: object
      required:
        - status
        - timestamp
      properties:
        status:
          type: string
        timestamp:
          type: string

````