Weather forecast for a location (global, keyless): current conditions, an hourly series (u
Weather forecast for a location (global, keyless): current conditions, an hourly series (up to 48h) and a daily summary (up to 10 days: min/max temp + condition), from met.no. Pass lat+lon, or a place name. For travel, logistics, events, energy. No API key.
2000 (raw units)
price
15
calls / 30d
4
unique payers
2026-09-18
updated
Provider
weather.cyberwarex.com · discovered, not yet claimed by its owner
Payment (x402 accepts[])
[
{
"scheme": "exact",
"network": "eip155:8453",
"payTo": "0x058D0Cc5CC97e61e8A9f38D6d6365bce525921B2",
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"amount": "2000",
"maxTimeoutSeconds": 300
}
]Output schema
{
"bazaar": {
"info": {
"input": {
"method": "GET",
"queryParams": {
"days": 5,
"place": "London"
},
"type": "http"
},
"output": {
"example": {
"daily": [
{
"date": "2026-09-12",
"symbol": "partlycloudy_day",
"temp_max_c": 22.5,
"temp_min_c": 12.6
}
],
"location": {
"name": "London"
},
"source": "met.no"
},
"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": {
"additionalProperties": false,
"properties": {
"days": {
"default": 7,
"maximum": 10,
"minimum": 1,
"type": "integer"
},
"hours": {
"default": 24,
"maximum": 48,
"minimum": 1,
"type": "integer"
},
"lat": {
"type": "number"
},
"lon": {
"type": "number"
},
"place": {
"description": "City/place name (geocoded) if lat/lon not given.",
"type": "string"
}
},
"type": "object"
},
"type": {
"const": "http",
"type": "string"
}
},
"required": [
"type",
"method"
],
"type": "object"
},
"output": {
"properties": {
"example": {
"properties": {
"current": {
"type": "object"
},
"daily": {
"type": "array"
},
"hourly": {
"type": "array"
},
"location": {
"type": "object"
},
"source": {
"type": "string"
}
},
"type": "object"
},
"type": {
"type": "string"
}
},
"required": [
"type"
],
"type": "object"
}
},
"required": [
"input"
],
"type": "object"
}
}
}Use it
curl
curl "https://weather.cyberwarex.com/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://weather.cyberwarex.com/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://weather.cyberwarex.com/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/6856.json, and this resource appears in /discovery/resources and /discovery/search.