> ## 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 apiweatherforecastmodels runs

> Get available runs for a specific weather model



## OpenAPI

````yaml https://sahabah-prod.devops.arabiaweather.com/openapi.json get /api/weather/forecast/models/{model}/runs
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:
  /api/weather/forecast/models/{model}/runs:
    get:
      tags:
        - Weather
      description: Get available runs for a specific weather model
      operationId: get_weather_model_runs
      parameters:
        - name: model
          in: path
          description: Weather model ID (e.g., gfs, ec25)
          required: true
          schema:
            type: string
        - name: x-api-key
          in: header
          description: API key for authentication
          required: true
          schema:
            type: string
      responses:
        '200':
          description: Weather model runs successfully retrieved
        '400':
          description: Invalid model
        '500':
          description: Internal server error
        '503':
          description: MODMS API unavailable
      security:
        - x-api-key: []
components: {}

````