> ## 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 apiweathermodels tiles

> Get tiles metadata for bounds area (returns array of tile URLs)



## OpenAPI

````yaml https://sahabah-prod.devops.arabiaweather.com/openapi.json get /api/weather/models/{model}/tiles
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/models/{model}/tiles:
    get:
      tags:
        - Weather
      description: Get tiles metadata for bounds area (returns array of tile URLs)
      operationId: get_bounds_weather_tiles
      parameters:
        - name: model
          in: path
          description: Weather model ID (e.g., gfs, ec25, icon, gem)
          required: true
          schema:
            type: string
        - name: bounds
          in: query
          description: Bounds in format 'lat1,lng1,lat2,lng2'
          required: true
          schema:
            type: string
        - name: zoom
          in: query
          description: Zoom level
          required: true
          schema:
            type: integer
            format: int32
            minimum: 0
        - name: time
          in: query
          description: Timestamp for forecast data (Unix timestamp)
          required: true
          schema:
            type: string
        - name: run
          in: query
          description: Model run ID (e.g., '2918') required for forecast
          required: true
          schema:
            type: string
        - name: query
          in: query
          description: Field expression to render
          required: true
          schema:
            type: string
        - name: style
          in: query
          description: Style object as JSON (all keys optional)
          required: false
          schema:
            type: string
        - name: x-api-key
          in: header
          description: API key for authentication
          required: true
          schema:
            type: string
      responses:
        '200':
          description: Weather tiles metadata successfully retrieved
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/BoundsTilesResponse'
        '400':
          description: Invalid parameters
        '500':
          description: Internal server error
      security:
        - x-api-key: []
components:
  schemas:
    BoundsTilesResponse:
      type: object
      required:
        - tiles
        - total_tiles
      properties:
        tiles:
          type: array
          items:
            $ref: '#/components/schemas/ModmsTile'
        total_tiles:
          type: integer
          minimum: 0
    ModmsTile:
      type: object
      required:
        - url
        - bounds
        - tile
        - z
      properties:
        bounds:
          $ref: '#/components/schemas/Bounds'
        tile:
          $ref: '#/components/schemas/Tile'
        url:
          type: string
        z:
          type: integer
          format: int32
          minimum: 0
    Bounds:
      type: object
      required:
        - south
        - west
        - north
        - east
      properties:
        east:
          type: number
          format: double
        north:
          type: number
          format: double
        south:
          type: number
          format: double
        west:
          type: number
          format: double
    Tile:
      type: object
      required:
        - x
        - 'y'
      properties:
        x:
          type: integer
          format: int32
          minimum: 0
        'y':
          type: integer
          format: int32
          minimum: 0

````