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



## OpenAPI

````yaml https://climate-data.devops.arabiaweather.com/api-docs/openapi.json get /climate/raw/{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/raw/{parameter}:
    get:
      tags:
        - Climate
      operationId: get_raw_climate
      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
        - name: latitude
          in: query
          required: true
          schema:
            type: number
            format: float
        - name: longitude
          in: query
          required: true
          schema:
            type: number
            format: float
        - name: years
          in: query
          description: Comma separated list of years (e.g. "2010,2011")
          required: true
          schema:
            type: string
          example: 2010,2011
        - name: months
          in: query
          description: Comma separated list of months (1-12) (e.g. "1,2,3")
          required: true
          schema:
            type: string
          example: 1,2,3
      responses:
        '200':
          description: >-
            Successfully retrieved raw daily climate series for each requested
            year/month combination
          content:
            application/json:
              schema:
                type: array
                items: 93a1720a-8b74-4fc0-9c4b-0ba12de876cf
        '400':
          description: Invalid year or month
        '401':
          description: Unauthorized - Invalid or missing API key
        '500':
          description: Internal server error

````