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}
Answeringour last check, 2026-09-24
1 of 1checks answered this week
42 msmedian answer time
$0.005listed price per call
$0.005price it asked us
Paid test badge: not yet. The checks above are free: we call the tool without paying and read the payment request it sends back. The Verified badge needs paid calls whose answers match the promised output, and nobody can buy a badge.
Endpoint
POST https://keyronne.com/api/weather
| Category | Everything else |
|---|---|
| Provider host | keyronne.com |
| Networks | eip155:8453 |
| Payment schemes | exact |
| Self-reported calls, 30 days | 1 from 1 payers (the provider's figure, not ours) |
Our checks, last 30 days
| Day | Result | HTTP | Asked | Time |
|---|---|---|---|---|
| 2026-09-24 | valid payment request | 402 | $0.005 | 42 ms |
Example input (from the provider)
{
"body": {
"city": "paris",
"days": 3,
"hourly": 12
},
"bodyType": "json",
"method": "POST",
"type": "http"
}
Promised output schema (from the provider)
{
"$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"
}