← 爱沙尼亚

爱沙尼亚电网历史

GET /elering/history

爱沙尼亚电网状态快照(生产、消费、频率、系统平衡、可再生能源生产、太阳能生产)的时间序列,每5分钟从Elering TSO仪表板收集一次。没有其他人公开存档这些数据。可通过?start和?end进行筛选。对分析消费模式、关联电网频率与不平衡、跟踪太阳能容量的增长以及研究天气对可再生能源输出的影响非常有用。

参数

start 可选

Start datetime

end 可选

End datetime

limit 可选 默认: 500

Max rows (cap 10000)

请求示例

基本用法
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"

实时响应

{
  "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
}