7Timer!
Numeric weather forecast for any lat/lon
Machine-readable forecasts from a GFS-derived model. No key; legacy host may be HTTP-only.
GET http://www.7timer.info/bin/api.pl?lon=13.4&lat=52.5&product=civil&output=json
{
"product": "civil",
"init": "2026070512",
"dataseries": [
{
"timepoint": 3,
"cloudcover": 8,
"lifted_index": 2,
"prec_type": "none",
"prec_amount": 0,
"temp2m": 22,
"rh2m": "47%",
"wind10m": {
"direction": "NW",
"speed": 4
}
},
{
"timepoint": 6,
"cloudcover": 9,
"lifted_index": 2,
"prec_type": "none",
"prec_amount": 0,
"temp2m": 20,
"rh2m": "53%",
"wind10m": {
"direction": "NW",
"speed": 3
}
}
]
}curl "http://www.7timer.info/bin/api.pl?lon=13.4&lat=52.5&product=civil&output=json"const res = await fetch("http://www.7timer.info/bin/api.pl?lon=13.4&lat=52.5&product=civil&output=json");
const data = await res.json();
console.log(data);import requests
res = requests.get("http://www.7timer.info/bin/api.pl?lon=13.4&lat=52.5&product=civil&output=json")
print(res.json())BROWSER CALLS BLOCKED (NO CORS/HTTPS) — USE THE CURL SNIPPET
/bin/api.pl?lon=13.4&lat=52.5&product=civil&output=jsonPROBEDNumeric weather forecast for any lat/lon
/binBin — documented GET route.
/bin/1Bin details by ID (example: 1).
/bin?limit=10Bin — documented GET route.
/bin/search?q=testSearch by query parameters.
/bin/api.pl?limit=5Api Pl — 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.
7Timer!: common questions
Is 7Timer! free to use?
Yes — 7Timer! is a free weather API. Free tier: Free — limits not published. Whether the free tier allows commercial use is unclear — check the provider docs.
Does 7Timer! need an API key?
No — 7Timer! needs no API key or signup. You can call it straight away; rate limits still apply (Unpublished).
Can I call 7Timer! from the browser?
Not directly — 7Timer! doesn't send browser-friendly CORS headers, so call it from a server or proxy instead. Copy the curl or Python snippet on this page to get started.
Is 7Timer! up right now?
As of our last scheduled check, 7Timer! is healthy with 100% uptime over 90 days and a 600 ms median response. We re-probe it every sweep — the status badge and uptime chart above always show the latest.