---
title: "Point weather (multi-model best-match)"
method: GET
path: "/api/v2/weather"
tags: ["Environment"]
---

# Point weather (multi-model best-match)

`GET /api/v2/weather`

Nearest-grid-node weather (2 m temperature, 10 m wind, mean sea-level pressure) for any coordinate worldwide, best-matched across sovereign forecast models (ECMWF Open Data, NOAA GFS) on a unified 0.25-degree grid. Each value carries its source model.

## Query parameters

- `lat` number, required — Latitude, decimal degrees.
- `lon` number, required — Longitude, decimal degrees.

## Response `200`

Successful Response

- EnvelopeWeatherPoint
  - `data` WeatherPoint, required
    - `location` WeatherPointLocation, required
      - `requested` LatLon, required
        - `lat` number, required
        - `lon` number, required
      - `grid_point` LatLon, required
        - `lat` number, required
        - `lon` number, required
      - `tile` string, required — The 10x10 degree Sugra Earth tile id.
    - `weather` WeatherPointValues, required
      - `temperature_c` number, nullable — 2 m air temperature, degrees Celsius.
      - `temperature_k` number, nullable — 2 m air temperature, Kelvin (model-native).
      - `wind_speed_ms` number, nullable — 10 m wind speed, metres per second.
      - `wind_direction_deg` number, nullable — 10 m wind direction, meteorological degrees (the direction the wind blows FROM).
      - `pressure_hpa` number, nullable — Mean sea-level pressure, hectopascals.
    - `forecast` WeatherPointForecast, required
      - `name` string, required — Primary contributing sovereign model name.
      - `cycle` string, nullable — Model run cycle, YYYYMMDDHH UTC.
      - `run_time` string, nullable — Model run time, ISO 8601 UTC.
      - `valid_time` string, nullable — Valid time of the sampled field, ISO 8601 UTC.
      - `lead_hours` integer, nullable — Forecast lead hours from the run (0 = analysis).
      - `resolution_deg` number, nullable — Grid resolution in degrees.
    - `provenance` object — Per-variable-group source: which sovereign model each value came from (keys: temperature, wind, pressure).
    - `attribution` WeatherPointAttributionSet
      - `sources` WeatherSourceAttribution[] — Every sovereign model that contributed a value, primary contributor first.
        - `registry_key` string, required
        - `source_name` string, required
        - `licence` string, required
        - `citation` string, required
        - `disclaimer` string, required
      - `effective_reexport` string, required — Most-restrictive re-export verdict across the contributing sources.
  - `meta` SugraMeta, required — Metadata attached to every /api/v1/* response envelope.
    - `endpoint` string, required — Requested endpoint path.
    - `data_time` string, required — ISO 8601 UTC timestamp of the source data, not of the request.
    - `response_time` string, required — ISO 8601 UTC timestamp when this response was produced.
    - `provider` string, required — API name and version.
    - `source` string, nullable — Identifier of the primary upstream source used for this response.
    - `attribution` string, nullable — Human-readable attribution mandated by an upstream source (e.g. a securities regulator or self-regulatory organization). Present only on responses whose source requires the owner and source to be clearly identified. Do not remove or alter it when using the response.
    - `fallback_used` boolean, nullable — True when the primary source failed and a fallback produced the data.
    - `fallback_chain` string[], nullable — Ordered list of sources attempted, in the order they were tried.
    - `cached` boolean, nullable — True when this response was served from the internal cache.
    - `stale` boolean, nullable — True when the cached response was returned after the upstream rate-limited or errored. Clients can use this to detect degraded data.

## Other responses

- `401` — Missing or invalid `x-api-key` header.
- `422` — Validation Error
- `429` — Daily rate limit exceeded. Check `X-RateLimit-Reset` for the next window.
- `503` — Upstream source is temporarily unavailable. Retry after a short delay.

---

[API](https://skmtc.dev/sugra/apis/sugra-api.md) · [All operations](https://skmtc.dev/sugra/apis/sugra-api/llms.txt) · [OpenAPI document](https://skmtc.dev/sugra/apis/sugra-api/revisions/2f944094d937?raw)
