> ## 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://climate-data.devops.arabiaweather.com/api-docs/openapi.json get /health
openapi: 3.0.3
info:
  title: api
  description: ''
  license:
    name: ''
  version: 0.1.0
servers:
  - url: https://climate-data.devops.arabiaweather.com
    description: Production API server
security: []
tags:
  - name: System
    description: System health and monitoring endpoints
  - name: Long Term
    description: Long term weather data endpoints
  - name: Climate
    description: Climate data endpoints
paths:
  /health:
    get:
      tags:
        - System
      operationId: health_check
      responses:
        '200':
          description: System is healthy
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HealthStatus'
        '503':
          description: System is unhealthy - long term data is outdated
          content:
            text/plain:
              schema:
                type: string
components:
  schemas:
    HealthStatus:
      type: object
      required:
        - longterm_data_last_update
      properties:
        longterm_data_last_update:
          type: string
          format: date-time

````