← Estland

Estisk netværkshistorik

GET /elering/history

Tidsserie af snapshots af det estiske netværks tilstand (produktion, forbrug, frekvens, systembalance, vedvarende produktion, solproduktion) indsamlet hvert 5. minut fra Elering TSO dashboard. Ingen andre arkiverer dette offentligt. Filtrer med ?start og ?end. Nyttigt til at analysere forbrugsmønstre, korrelere netfrekvens med ubalancer, spore væksten i solkapacitet og studere vejrets indflydelse på vedvarende produktion.

Parametre

start valgfri

Start datetime

end valgfri

End datetime

limit valgfri standard: 500

Max rows (cap 10000)

Eksempelforespørgsler

Grundlæggende brug
curl "https://nordapi.ee/api/v1/elering/history?limit=288"
Last 24 hours (288 snapshots)
curl "https://nordapi.ee/api/v1/elering/history?limit=288"
Specific day
curl "https://nordapi.ee/api/v1/elering/history?start=2026-04-14&end=2026-04-15"

Livesvar

{
  "count": 1,
  "data": [
    {
      "ac_balance": null,
      "consumption": 792.9,
      "frequency": 50.01,
      "production": 438.48,
      "production_renewable": null,
      "solar_energy_production": null,
      "system_balance": null,
      "timestamp": "2026-04-18T17:45:00Z"
    }
  ],
  "success": true
}