Global weather forecast for latitude and longitude
Global weather forecast for latitude and longitude. Returns the forecast valid now, all available hourly forecast points, and the extended forecast in native 6-hour periods without inventing hourly precision. Data source: MET Norway Locationforecast 2.0.
Answeringour last check, 2026-09-24
1 of 1checks answered this week
140 msmedian answer time
$0.001listed price per call
$0.001price 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
GET https://wallet-services-poc-clean.3hz-services.workers.dev/weather
| Category | Market data |
|---|---|
| Provider host | wallet-services-poc-clean.3hz-services.workers.dev |
| Networks | eip155:84532 |
| 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.001 | 140 ms |
Example input (from the provider)
{
"method": "GET",
"queryParams": {
"lat": 0,
"lon": 0
},
"type": "http"
}
Promised output schema (from the provider)
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"additionalProperties": false,
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"method": {
"enum": [
"GET"
],
"type": "string"
},
"queryParams": {
"additionalProperties": false,
"properties": {
"lat": {
"description": "Latitude in decimal degrees",
"maximum": 90,
"minimum": -90,
"type": "number"
},
"lon": {
"description": "Longitude in decimal degrees",
"maximum": 180,
"minimum": -180,
"type": "number"
}
},
"required": [
"lat",
"lon"
],
"type": "object"
},
"type": {
"const": "http",
"type": "string"
}
},
"required": [
"type",
"method",
"queryParams"
],
"type": "object"
},
"output": {
"additionalProperties": false,
"properties": {
"example": {
"properties": {
"current_forecast": {
"type": "object"
},
"fetched_at": {
"type": "string"
},
"forecast_horizon": {
"type": "object"
},
"hourly_forecast": {
"type": "array"
},
"location": {
"type": "object"
},
"six_hour_periods": {
"type": "array"
},
"source": {
"type": "object"
},
"source_updated_at": {
"type": [
"string",
"null"
]
}
},
"required": [
"location",
"current_forecast",
"hourly_forecast",
"six_hour_periods",
"forecast_horizon",
"source",
"source_updated_at",
"fetched_at"
],
"type": "object"
},
"type": {
"const": "json",
"type": "string"
}
},
"required": [
"type",
"example"
],
"type": "object"
}
},
"required": [
"input",
"output"
],
"type": "object"
}