UtilityAPI · Example Payload

Utilityapi List Bills Example

EnergyUtilitiesGreen ButtonBilling DataMeter DataClean Energy

Utilityapi List Bills Example is an example object payload from UtilityAPI, with 2 top-level fields. It illustrates the shape of data this provider's APIs accept or return.

Top-level fields

requestresponse

Example Payload

Raw ↑
{
  "request": {
    "method": "GET",
    "url": "https://utilityapi.com/api/v2/bills",
    "headers": {
      "Authorization": "Bearer YOUR_API_TOKEN"
    },
    "query": {
      "meter_uid": "meter_xyz789",
      "start": "2024-01-01",
      "end": "2024-12-31",
      "limit": 12
    }
  },
  "response": {
    "status": 200,
    "body": {
      "bills": [
        {
          "uid": "bill_001abc",
          "meter_uid": "meter_xyz789",
          "statement_date": "2024-02-01",
          "due_date": "2024-02-20",
          "total_kwh": 450.5,
          "total_amount": 89.32,
          "currency": "USD",
          "created": "2024-02-01T08:00:00Z"
        },
        {
          "uid": "bill_002def",
          "meter_uid": "meter_xyz789",
          "statement_date": "2024-03-01",
          "due_date": "2024-03-20",
          "total_kwh": 512.0,
          "total_amount": 102.15,
          "currency": "USD",
          "created": "2024-03-01T08:00:00Z"
        }
      ],
      "next": null
    }
  }
}