Catalog/data-weather

Data

Current weather API

Current weather for a city name or coordinates (temperature, wind, conditions). Free via Open-Meteo. Answers 'weather in Tokyo', 'current temperature at these coordinates', 'is it raining in London'.

Price$0.01per request
MethodPOST
Route/v1/data/weather
StatusLive
MIME typeapplication/json
Rate limit60/minute
Cache600s public
dataweathertemperatureforecastclimateopen-meteo
API URLhttps://x402.hexl.dev/v1/data/weather
Integration docs
Example request
{
  "city": "Tokyo"
}
Example response
{
  "location": "Tokyo, Japan",
  "latitude": 35.69,
  "longitude": 139.69,
  "temperatureC": 22.4,
  "windspeedKmh": 8.1,
  "conditions": "Partly cloudy",
  "observedAt": "2026-06-02T12:00"
}
Input schema
{
  "type": "object",
  "properties": {
    "city": {
      "type": "string",
      "examples": [
        "Tokyo"
      ]
    },
    "latitude": {
      "type": "number"
    },
    "longitude": {
      "type": "number"
    }
  }
}
Output schema
{
  "type": "object",
  "additionalProperties": true
}