Bright Sky (DWD)
Open weather API built on German Weather Service (DWD) data covering all of Germ
Open weather API built on German Weather Service (DWD) data covering all of Germany with no key required.
GET https://api.brightsky.dev/current_weather?lat=52.5&lon=13.4
{
"weather": {
"source_id": 303711,
"timestamp": "2026-07-05T21:00:00+00:00",
"cloud_cover": 100,
"condition": "dry",
"dew_point": 11.44,
"solar_10": 0,
"solar_30": 0,
"solar_60": 0
},
"sources": [
{
"id": 303711,
"dwd_station_id": "00433",
"observation_type": "synop",
"lat": 52.4676,
"lon": 13.402,
"height": 47.7,
"station_name": "Berlin-Tempelhof",
"wmo_station_id": "10384"
},
{
"id": 254907,
"dwd_station_id": "03987",
"observation_type": "synop",
"lat": 52.3813,
"lon": 13.0622,
"height": 80.9,
"station_name": "Potsdam",
"wmo_station_id": "10379"
}
]
}curl "https://api.brightsky.dev/current_weather?lat=52.5&lon=13.4"const res = await fetch("https://api.brightsky.dev/current_weather?lat=52.5&lon=13.4");
const data = await res.json();
console.log(data);import requests
res = requests.get("https://api.brightsky.dev/current_weather?lat=52.5&lon=13.4")
print(res.json())/current_weather?lat=52.5&lon=13.4PROBEDOpen weather API built on German Weather Service (DWD) data covering all of Germ
/current_weather?limit=5Current Weather — documented GET route.
/current_weather?page=1Current Weather — documented GET route.
We probe a documented GET and expect 2xx JSON — full uptime and health score. Export includes every documented route below.
Stable. No schema drift observed since monitoring began — the response shape has not changed under our checks.
Bright Sky (DWD): common questions
Is Bright Sky (DWD) free to use?
Yes — Bright Sky (DWD) is a free weather API. Free tier: Unlimited, no key, no credit card. Whether the free tier allows commercial use is unclear — check the provider docs.
Does Bright Sky (DWD) need an API key?
No — Bright Sky (DWD) needs no API key or signup. You can call it straight away; rate limits still apply (Unpublished).
Can I call Bright Sky (DWD) from the browser?
Yes — Bright Sky (DWD) returns CORS headers over HTTPS, so front-end code can fetch it directly with no backend proxy. Use the fetch snippet on this page, or hit "Run live" to try it now.
Is Bright Sky (DWD) up right now?
As of our last scheduled check, Bright Sky (DWD) is healthy with 99.02% uptime over 90 days and a 656 ms median response. We re-probe it every sweep — the status badge and uptime chart above always show the latest.