> ## 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 climaterange



## OpenAPI

````yaml https://climate-data.devops.arabiaweather.com/api-docs/openapi.json get /climate/range/{parameter}
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:
  /climate/range/{parameter}:
    get:
      tags:
        - Climate
      operationId: get_climate_history_range
      parameters:
        - name: x-api-key
          in: header
          description: API key for authentication
          required: true
          schema:
            type: string
        - name: parameter
          in: path
          description: >-
            (temperature, precipitation, snowfall, relative_humidity,
            wind_speed)
          required: true
          schema:
            type: string
      responses:
        '200':
          description: Successfully retrieved climate history range
        '400':
          description: Invalid parameter
        '401':
          description: Unauthorized - Invalid or missing API key
        '500':
          description: Internal server error

````