GrünstromIndex
Hourly green-power forecast for German postcodes
The Corrently GSI (Grünstromindex) endpoint forecasts the share of renewable electricity for a German postal code hour by hour, alongside wind/solar values, a CO2 estimate and an indicative energy price. Pass a zip code and get a JSON forecast array. Usage is governed by a fair-use policy, with paid tiers for higher limits.
GET https://api.corrently.io/v2.0/gsi/prediction?zip=70173
{
"support": "If you have any question please contact dev@stromdao.com or visit https://premium.corrently.de/",
"documentation": "https://corrently.io/books/grunstromindex",
"forecast": [
{
"epochtime": 1783263600,
"eevalue": 90,
"ewind": 2,
"esolar": 65,
"gsi": 85.5,
"co2_avg": 242.5
}
]
}curl "https://api.corrently.io/v2.0/gsi/prediction?zip=70173"const res = await fetch("https://api.corrently.io/v2.0/gsi/prediction?zip=70173");
const data = await res.json();
console.log(data);import requests
res = requests.get("https://api.corrently.io/v2.0/gsi/prediction?zip=70173")
print(res.json())/gsi/prediction?zip=70173PROBEDHourly green-power forecast for German postcodes
/gsiGsi — documented GET route.
/gsi/1Gsi details by ID (example: 1).
/gsi?limit=10Gsi — documented GET route.
/gsi/search?q=testSearch by query parameters.
/gsi/prediction?limit=5Prediction — 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.
GrünstromIndex: common questions
Is GrünstromIndex free to use?
Yes — GrünstromIndex is a free weather API. Free tier: Free under fair-use policy. Whether the free tier allows commercial use is unclear — check the provider docs.
Does GrünstromIndex need an API key?
No — GrünstromIndex needs no API key or signup. You can call it straight away; rate limits still apply (Fair-use (paid tiers for higher limits)).
Can I call GrünstromIndex from the browser?
Yes — GrünstromIndex 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 GrünstromIndex up right now?
As of our last scheduled check, GrünstromIndex is healthy with 73.5% uptime over 90 days and a 1072 ms median response. We re-probe it every sweep — the status badge and uptime chart above always show the latest.