Hourly weather forecast for any point on Earth from Open-Meteo (blend of ECMWF/GFS/ICON mo
Hourly weather forecast for any point on Earth from Open-Meteo (blend of ECMWF/GFS/ICON models, refreshed hourly; data CC-BY 4.0). Query: ?latitude=48.8566&longitude=2.3522&hourly=temperature_2m,precipitation,wind_speed_10m&forecast_days=2 (1-16 days, ~80 hourly variables available, optional daily= aggregates and timezone=auto). ISO 8601 time arrays + units. 15 min cache.
1000 (raw units)
price
2
calls / 30d
2
unique payers
2026-09-09
updated
Provider
x402-datashop-production.up.railway.app · discovered, not yet claimed by its owner
Payment (x402 accepts[])
[
{
"scheme": "exact",
"network": "eip155:8453",
"payTo": "0x6ab8efe305cce67daa48c97bde29c04402822dff",
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"amount": "1000",
"maxTimeoutSeconds": 300
}
]Output schema
{
"bazaar": {
"info": {
"input": {
"method": "GET",
"queryParams": {
"forecast_days": 2,
"hourly": "temperature_2m,precipitation,wind_speed_10m",
"latitude": 48.8566,
"longitude": 2.3522
},
"type": "http"
},
"output": {
"example": {
"elevation_m": 36,
"hourly": {
"precipitation": [
0,
0
],
"temperature_2m": [
17.9,
17.4
],
"time": [
"2026-07-13T00:00",
"2026-07-13T01:00"
],
"wind_speed_10m": [
8.7,
7.9
]
},
"hourly_units": {
"precipitation": "mm",
"temperature_2m": "°C",
"time": "iso8601",
"wind_speed_10m": "km/h"
},
"latitude": 48.86,
"longitude": 2.36,
"source": "Open-Meteo.com weather forecast API, data CC-BY 4.0 (models updated hourly)",
"timezone": "UTC"
},
"type": "json"
}
},
"schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"method": {
"enum": [
"GET",
"HEAD",
"DELETE"
],
"type": "string"
},
"queryParams": {
"properties": {
"daily": {
"description": "Optional comma-separated daily aggregates",
"type": "string"
},
"forecast_days": {
"default": 2,
"maximum": 16,
"minimum": 1,
"type": "integer"
},
"hourly": {
"default": "temperature_2m,precipitation,wind_speed_10m",
"description": "Comma-separated hourly variables",
"type": "string"
},
"latitude": {
"description": "Latitude in decimal degrees (-90..90)",
"type": "number"
},
"longitude": {
"description": "Longitude in decimal degrees (-180..180)",
"type": "number"
},
"timezone": {
"default": "UTC",
"description": "IANA timezone or 'auto'",
"type": "string"
}
},
"required": [
"latitude",
"longitude"
],
"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-datashop-production.up.railway.app/v1/wx/forecast" # -> 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-datashop-production.up.railway.app/v1/wx/forecast");
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-datashop-production.up.railway.app/v1/wx/forecast")
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/13161.json, and this resource appears in /discovery/resources and /discovery/search.