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.
We probe a documented GET and expect 2xx JSON — full uptime and health score. Open provider docs ↗
On our probe schedule. Uptime charts appear after the first check lands.
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.
Not tracked yet. Shape-change history starts once this API joins our probe schedule.
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?
GrünstromIndex is catalogued but not yet on our probe schedule, so we don't publish a live status for it. Check the provider's own status page or docs for its current state.