Interval data

Interval data explained

Interval data is a snapshot of a customer's energy usage for a given time period. Data is provided in different granularities depending on the utility. Commonly provided granularities are 15 minute (usually the best case), hourly or daily intervals.

{
  "first_interval_discovered": "2021-11-01T00:00:00Z",
  "last_interval_discovered": "2022-11-01T00:00:00Z",
  "granularities": [
    15,
    30
  ],
  "meters": [
    {
      "id": 12345,
      "intervals": [
        {
          "start": "2022-11-01T00:00:00Z",
          "end": "2022-11-01T00:15:00Z",
          "electricity_consumption": 20000,
          "net_electricity_consumption": 15000,
          "generated_electricity": 5000,
          "electricity_demand": 5000,
          "gas_consumption": 13.4
        }
      ]
    }
  ]
}

🚧

Not all utilities provide intervals. After a customer connects their utility account, Bayou fetches all interval data available from the utility. View interval data availability for more info.