Current conditions and up to a 7-day forecast for any coordinates, via Open-Meteo
Current conditions and up to a 7-day forecast for any coordinates, via Open-Meteo. Returns current (tempC, feelsLikeC, humidityPct, windKmh, weatherCode, description), daily[] highs/lows/precipitation, and explicit units. Requires BOTH ?lat= and ?lon=; optional ?days=1..7 (default 3, clamped not rejected). Errors: 400 bad_coords|coords_out_of_range|bad_days, 502 weather_unavailable|weather_malformed. This takes COORDINATES, not a place name - resolve one with /geocode first.
10000 (raw units)
price
1
calls / 30d
1
unique payers
2026-08-30
updated
Provider
x402.donnyautomation.com · discovered, not yet claimed by its owner
Payment (x402 accepts[])
[
{
"scheme": "exact",
"network": "eip155:8453",
"payTo": "0x2740651e046c59aB2A6510401140643292d3a96F",
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"amount": "10000",
"maxTimeoutSeconds": 300
}
]Output schema
{
"bazaar": {
"info": {
"input": {
"method": "GET",
"queryParams": {
"lat": "40.7128",
"lon": "-74.0060"
},
"type": "http"
},
"output": {
"example": {
"attribution": "Weather data by Open-Meteo.com (CC BY 4.0).",
"current": {
"description": "overcast",
"feelsLikeC": 25.3,
"humidityPct": 78,
"tempC": 24.1,
"weatherCode": 3,
"windKmh": 11.2
},
"daily": [
{
"date": "2026-08-02",
"description": "slight rain",
"maxC": 29.4,
"minC": 21.8,
"precipitationMm": 2.1,
"precipitationProbabilityPct": 45
}
],
"lat": 40.7128,
"lon": -74.006,
"timezone": "America/New_York",
"ts": "2026-08-02T00:00:00.000Z",
"units": {
"precipitation": "mm",
"temperature": "celsius",
"wind": "km/h"
}
},
"type": "json"
}
},
"schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"method": {
"enum": [
"GET"
],
"type": "string"
},
"queryParams": {
"properties": {
"days": {
"description": "Forecast days, 1..7 (default 3).",
"type": "string"
},
"lat": {
"description": "Latitude, -90..90 (e.g. 40.7128).",
"type": "string"
},
"lon": {
"description": "Longitude, -180..180 (e.g. -74.0060).",
"type": "string"
}
},
"required": [
"lat",
"lon"
],
"type": "object"
},
"type": {
"const": "http",
"type": "string"
}
},
"required": [
"type",
"method"
],
"type": "object"
},
"output": {
"properties": {
"example": {
"type": "object"
},
"type": {
"type": "string"
}
},
"required": [
"type"
],
"type": "object"
}
},
"required": [
"input"
],
"type": "object"
}
}
}Use it
curl
curl "https://x402.donnyautomation.com/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://x402.donnyautomation.com/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://x402.donnyautomation.com/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/4937.json, and this resource appears in /discovery/resources and /discovery/search.