Skip to main content
GET
/
api
/
weather
/
models
/
{model}
/
tiles
cURL
curl --request GET \
  --url https://sahabah-prod.devops.arabiaweather.com/api/weather/models/{model}/tiles \
  --header 'x-api-key: <x-api-key>'
{
  "tiles": [
    {
      "bounds": {
        "east": 123,
        "north": 123,
        "south": 123,
        "west": 123
      },
      "tile": {
        "x": 1,
        "y": 1
      },
      "url": "<string>",
      "z": 1
    }
  ],
  "total_tiles": 1
}

Headers

x-api-key
string
required

API key for authentication

Path Parameters

model
string
required

Weather model ID (e.g., gfs, ec25, icon, gem)

Query Parameters

bounds
string
required

Bounds in format 'lat1,lng1,lat2,lng2'

zoom
integer<int32>
required

Zoom level

Required range: x >= 0
time
string
required

Timestamp for forecast data (Unix timestamp)

run
string
required

Model run ID (e.g., '2918') required for forecast

query
string
required

Field expression to render

style
string

Style object as JSON (all keys optional)

Response

Weather tiles metadata successfully retrieved

tiles
object[]
required
total_tiles
integer
required
Required range: x >= 0