GET /carbonintensity/generation
Erhalten Sie den aktuellen UK electricity generation mix showing the percentage contribution from each energy source: wind, solar, nuclear, gas, coal, hydro, biomass, imports, und others. Bietet a Echtzeit snapshot of how the UK's electricity is being produced right now. Nützlich für energy dashboards, climate education tools, und apps that help users understand when renewable energy percentage is highest.
curl https://nordapi.ee/api/v1/carbonintensity/generation
{
"data": {
"from": "2026-04-05T20:00Z",
"mix": [
{
"fuel": "biomass",
"percentage": 3.8
},
{
"fuel": "coal",
"percentage": 0
},
{
"fuel": "imports",
"percentage": 14.5
},
{
"fuel": "gas",
"percentage": 13.9
},
{
"fuel": "nuclear",
"percentage": 18.3
},
{
"fuel": "other",
"percentage": 0
},
{
"fuel": "hydro",
"percentage": 0
},
{
"fuel": "solar",
"percentage": 0
},
{
"fuel": "wind",
"percentage": 49.5
}
],
"to": "2026-04-05T20:30Z"
},
"success": true
}