Overview
API call to openweather
Protocol
x402
Price
$0.06
Payment Asset
USD Coin
Payment Network
Base
Category
real-time-data/weather
Provider
gateway
Source
bazaar
Indexed
2026-06-29 12:15:03
Health
Status
unknown
Latency (p50)
—
Uptime (30d)
—
Reliability Score
—
Last Checked
Never
Last Healthy
Never
Consecutive Failures
0
x402 Payment Validation
Payment Requirements
—
Asset Verified
—
Facilitator
—
Input Schema
{
"discoverable": true,
"method": "GET",
"queryParams": {
"properties": {
"lang": {
"description": "Two-letter language code for the weather 'description' text (e.g. 'en', 'es', 'fr', 'de').",
"example": "en",
"type": "string"
},
"lat": {
"description": "Latitude of the location. Use together with lon as an alternative to q.",
"example": 51.5085,
"type": "number"
},
"lon": {
"description": "Longitude of the location. Use together with lat as an alternative to q.",
"example": -0.1257,
"type": "number"
},
"q": {
"description": "City name, optionally with state and ISO country code (e.g. 'London' or 'London,GB'). Provide this OR lat+lon.",
"example": "London",
"type": "string"
},
"units": {
"description": "Units of measurement. 'standard' (Kelvin), 'metric' (Celsius), or 'imperial' (Fahrenheit). Defaults to 'standard'.",
"example": "metric",
"type": "string"
}
},
"required": [],
"type": "object"
},
"type": "http"
}
Output Schema
{
"base": "stations",
"clouds": {
"all": 4
},
"cod": 200,
"coord": {
"lat": 51.5085,
"lon": -0.1257
},
"dt": 1782240221,
"id": 2643743,
"main": {
"feels_like": 33.11,
"grnd_level": 1012,
"humidity": 53,
"pressure": 1016,
"sea_level": 1016,
"temp": 30.93,
"temp_max": 32.77,
"temp_min": 30.59
},
"name": "London",
"sys": {
"country": "GB",
"id": 2075535,
"sunrise": 1782186212,
"sunset": 1782246103,
"type": 2
},
"timezone": 3600,
"visibility": 10000,
"weather": [
{
"description": "clear sky",
"icon": "01d",
"id": 800,
"main": "Clear"
}
],
"wind": {
"deg": 53,
"gust": 1.79,
"speed": 1.79
}
}