Current conditions plus hourly and daily forecasts for anywhere on Earth
Current conditions plus hourly and daily forecasts for anywhere on Earth. Pass a major city name or lat/lon coordinates; get temperature, wind, humidity, pressure, cloud cover, condition codes and precipitation, with up to 90 hourly and 10 daily entries. Data from MET Norway (CC BY 4.0). No API keys, one call. POST a JSON body like: {"city":"paris","hourly":12,"days":3}
5000 (raw units)
price
1
calls / 30d
1
unique payers
2026-08-28
updated
Provider
keyronne.com · discovered, not yet claimed by its owner
Payment (x402 accepts[])
[
{
"scheme": "exact",
"network": "eip155:8453",
"payTo": "0xB86F95EF5FA904318Ea9Df3b59AdCe099b478fC4",
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"amount": "5000",
"maxTimeoutSeconds": 60
}
]Output schema
{
"bazaar": {
"info": {
"input": {
"body": {
"city": "paris",
"days": 3,
"hourly": 12
},
"bodyType": "json",
"method": "POST",
"type": "http"
},
"output": {
"example": {
"attribution": "Weather data from MET Norway (CC BY 4.0)",
"current": {
"condition": "partlycloudy_day",
"humidityPct": 62,
"temperatureC": 18.2,
"windSpeedMs": 3.4
},
"daily": [
{
"date": "2026-07-06",
"precipitationMm": 0.2,
"temperatureMaxC": 21,
"temperatureMinC": 13.5
}
],
"hourly": [
{
"condition": "cloudy",
"precipitationMm": 0,
"temperatureC": 19.1,
"time": "2026-07-06T12:00:00Z"
}
],
"location": {
"city": "paris",
"lat": 48.86,
"lon": 2.35
}
},
"type": "json"
}
},
"schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"properties": {
"body": {
"properties": {
"city": {
"description": "Major city name (e.g. \"tokyo\", \"new york\"). Or use lat/lon.",
"type": "string"
},
"days": {
"default": 5,
"description": "Daily summaries to return.",
"maximum": 10,
"minimum": 1,
"type": "integer"
},
"hourly": {
"default": 24,
"description": "Hourly entries to return.",
"maximum": 90,
"minimum": 0,
"type": "integer"
},
"lat": {
"maximum": 90,
"minimum": -90,
"type": "number"
},
"lon": {
"maximum": 180,
"minimum": -180,
"type": "number"
}
},
"type": "object"
},
"bodyType": {
"enum": [
"json"
],
"type": "string"
},
"method": {
"enum": [
"POST"
],
"type": "string"
},
"type": {
"const": "http",
"type": "string"
}
},
"type": "object"
},
"output": {
"properties": {
"attribution": {
"type": "string"
},
"current": {
"properties": {
"cloudCoverPct": {
"type": "number"
},
"condition": {
"description": "MET symbol code, e.g. \"rain\", \"clearsky_day\".",
"type": "string"
},
"humidityPct": {
"type": "number"
},
"precipitationNextHourMm": {
"type": "number"
},
"pressureHpa": {
"type": "number"
},
"temperatureC": {
"type": "number"
},
"time": {
"type": "string"
},
"windDirectionDeg": {
"type": "number"
},
"windSpeedMs": {
"type": "number"
}
},
"type": "object"
},
"daily": {
"items": {
"type": "object"
},
"type": "array"
},
"hourly": {
"items": {
"type": "object"
},
"type": "array"
},
"location": {
"properties": {
"city": {
"type": "string"
},
"lat": {
"type": "number"
},
"lon": {
"type": "number"
}
},
"type": "object"
},
"units": {
"type": "object"
},
"updatedAt": {
"type": "string"
}
},
"type": "object"
}
},
"required": [
"input"
],
"type": "object"
}
}
}Use it
curl
curl "https://keyronne.com/api/weather" # -> 402 Payment Required, accepts[] lists how to pay # retry with a PAYMENT-SIGNATURE (or PAYMENT header) once paid
JavaScript
const res = await fetch("https://keyronne.com/api/weather");
if (res.status === 402) {
const { accepts } = await res.json();
// pay one of accepts[] via an x402 client, then retry with the payment header
}Python
import httpx
res = httpx.get("https://keyronne.com/api/weather")
if res.status_code == 402:
accepts = res.json()["accepts"]
# pay one of accepts[] via an x402 client, then retry with the payment headerMachine-readable
Everything on this page is also available as clean JSON at /resources/818.json, and this resource appears in /discovery/resources and /discovery/search.