Returns the German Weather Service reference-period values for the station neare
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.
Answeringour last check, 2026-09-24
1 of 1checks answered this week
950 msmedian answer time
$0.005listed price per call
$0.005price 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
POST https://natur.halowerk.com/v1/climate-normals
| Category | Everything else |
|---|---|
| Provider host | natur.halowerk.com |
| Networks | eip155:8453 |
| 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.005 | 950 ms |
Example input (from the provider)
{
"body": {
"lat": 52.52,
"lon": 13.405,
"quantities": [
"temperature",
"precipitation"
]
},
"bodyType": "json",
"method": "POST",
"type": "http"
}
Promised output schema (from the provider)
{
"$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"
}