Returns the German Weather Service reference-period values for the station nearest a coord
Returns the German Weather Service reference-period values for the station nearest a coordinate: monthly means and annual totals for air temperature, precipitation and sunshine duration, plus the mean annual counts of frost days, ice days, summer days and hot days.
5000 (raw units)
price
1
calls / 30d
1
unique payers
2026-09-02
updated
Provider
natur.halowerk.com · discovered, not yet claimed by its owner
Payment (x402 accepts[])
[
{
"scheme": "exact",
"network": "eip155:8453",
"payTo": "0x2880EdfFF13100677Bf97A3CBdF3Bc34771C4E5E",
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"amount": "5000",
"maxTimeoutSeconds": 300
}
]Output schema
{
"bazaar": {
"info": {
"input": {
"body": {
"lat": 52.52,
"lon": 13.405,
"quantities": [
"temperature",
"precipitation"
]
},
"bodyType": "json",
"method": "POST",
"type": "http"
}
},
"schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"body": {
"additionalProperties": false,
"properties": {
"lat": {
"description": "Within Germany; the source covers no other country.",
"maximum": 56,
"minimum": 47,
"type": "number"
},
"lon": {
"maximum": 16,
"minimum": 5,
"type": "number"
},
"max_station_distance_km": {
"default": 50,
"maximum": 200,
"minimum": 1,
"type": "number"
},
"quantities": {
"description": "Which quantities to return. All by default.",
"items": {
"enum": [
"temperature",
"precipitation",
"sunshine",
"frost_days",
"ice_days",
"summer_days",
"hot_days"
],
"type": "string"
},
"maxItems": 7,
"type": "array"
}
},
"required": [
"lat",
"lon"
],
"type": "object"
},
"bodyType": {
"enum": [
"json",
"form-data",
"text"
],
"type": "string"
},
"method": {
"enum": [
"POST",
"PUT",
"PATCH"
],
"type": "string"
},
"type": {
"const": "http",
"type": "string"
}
},
"required": [
"type",
"method",
"bodyType",
"body"
],
"type": "object"
}
},
"required": [
"input"
],
"type": "object"
}
}
}Use it
curl
curl "https://natur.halowerk.com/v1/climate-normals" # -> 402 Payment Required, accepts[] lists how to pay # retry with a PAYMENT-SIGNATURE (or PAYMENT header) once paid
JavaScript
const res = await fetch("https://natur.halowerk.com/v1/climate-normals");
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://natur.halowerk.com/v1/climate-normals")
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/15301.json, and this resource appears in /discovery/resources and /discovery/search.