Skip to content

Get Products with rates

Overview

We offer a range of postpay and prepay products. And each product will have rates depending on the TDSP and Load Zone that are applicable to a customer.

Please filter the rates using the customer's ESI ID or service provider or postcode to get rates that are applicable to them. If you didn't provide any filter, the API will return rates that are applicable in each service provider (TDSP).

Authentication not required

productsWithConciseApplicableRates does not require authentication.

Arguments

Returns

query productsWithConciseApplicableRates(
    $filterProductsBy: ProductInput
    $filterRatesBy: ConciseRatesInput
  ){
  productsWithConciseApplicableRates(filterProductsBy:$filterProductsBy){
      id
      fullName
      displayName
      description
      prepay
      term
      rates(filterRatesBy:$filterRatesBy) {
        totalApplicableRate
        totalApplicableRateWithMonthlySubscriptionFees
        kwhUsage
        serviceProvider
        serviceProviderConsumptionRate
        serviceProviderStandingRate
        loadZone
        totalApplicableDayRate
        totalApplicableDayRateWithMonthlySubscriptionFees
        totalApplicableNightRate
        totalApplicableNightRateWithMonthlySubscriptionFees
        loadZoneDayTimeConsumptionRate
        loadZoneNightTimeConsumptionRate
        loadZoneConsumptionRate
        serviceProviderStandingRateUnitType
        serviceProviderConsumptionRateUnitType
        loadZoneDayTimeRateUnitType
        loadZoneNightTimeRateUnitType
        loadZoneConsumptionRateUnitType
      }
    }
}

# Input variables
{
    "filterProductsBy":{
        id: ID,
        displayName:"",
        basedOnTimeOfUse: Boolean,
        availableAt: DateTime (ISO 8601 format)
    },
    "filterRatesBy":{
        esiId: "",
        serviceProvider: ServiceProvider,
        loadZone: LoadZone,
        # By default set as 1000 kWh
        kwhUsage:Decimal,
    }
}

Example

query productsWithConciseApplicableRates(
    $filterProductsBy: ProductInput
    $filterRatesBy: ConciseRatesInput
  ){
  productsWithConciseApplicableRates(filterProductsBy:$filterProductsBy){
      id
      fullName
      displayName
      description
      prepay
      term
      rates(filterRatesBy:$filterRatesBy) {
        totalApplicableRate
        totalApplicableRateWithMonthlySubscriptionFees
        kwhUsage
        serviceProvider
        serviceProviderConsumptionRate
        serviceProviderStandingRate
        loadZone
        totalApplicableDayRate
        totalApplicableDayRateWithMonthlySubscriptionFees
        totalApplicableNightRate
        totalApplicableNightRateWithMonthlySubscriptionFees
        loadZoneDayTimeConsumptionRate
        loadZoneNightTimeConsumptionRate
        loadZoneConsumptionRate
        serviceProviderStandingRateUnitType
        serviceProviderConsumptionRateUnitType
        loadZoneDayTimeRateUnitType
        loadZoneNightTimeRateUnitType
        loadZoneConsumptionRateUnitType
      }
    }
}
1
2
3
4
5
6
7
8
9
# Input variables
{
    "filterProductsBy":{
        id: 21,
    },
    "filterRatesBy":{
        kwhUsage:2520.25,
    }
}
import pprint

import requests

# API_URL = "https://api.oeus-kraken.energy/v1/graphql/" # Prod
API_URL = "https://api.oeus-kraken.systems/v1/graphql/" # Test
HEADERS = {}

QUERY = """
  query productsWithConciseApplicableRates($filterProductsBy:ProductInput, $filterRatesBy:ConciseRatesInput){
      productsWithConciseApplicableRates(filterProductsBy:$filterProductsBy){
            id
            fullName
            displayName
            description
            prepay
            term
            __typename
            rates(filterRatesBy:$filterRatesBy){
                totalApplicableRate
                totalApplicableRateWithMonthlySubscriptionFees
                kwhUsage
                serviceProvider
                serviceProviderConsumptionRate
                serviceProviderStandingRate
                loadZone
                totalApplicableDayRate
                totalApplicableNightRate
                totalApplicableDayRateWithMonthlySubscriptionFees
                totalApplicableNightRateWithMonthlySubscriptionFees
                loadZoneDayTimeConsumptionRate
                loadZoneNightTimeConsumptionRate
                loadZoneConsumptionRate
                serviceProviderStandingRateUnitType
                serviceProviderConsumptionRateUnitType
                loadZoneDayTimeRateUnitType
                loadZoneNightTimeRateUnitType
                loadZoneConsumptionRateUnitType
                __typename
        }
     }
  }
"""


VARIABLES = {
    "filterProductsBy": {"id": 21},
    "filterRatesBy": {"kwhUsage": "2520.25"},
}

session = requests.Session()
session.headers.update(HEADERS)
response = session.post(
    url=API_URL,
    json={"query": QUERY, "variables": VARIABLES}
)
pprint.pprint(response.json())
const axios = require("axios")

// const API_URL = "https://api.oeus-kraken.energy/v1/graphql/" // Prod
const apiUrl = "https://api.oeus-kraken.systems/v1/graphql/" // Test
let headers = {'content-type': 'application/json'}

const query = `
    query productsWithConciseApplicableRates(
        $filterProductsBy: ProductInput
        $filterRatesBy: ConciseRatesInput
      ){
      productsWithConciseApplicableRates(filterProductsBy:$filterProductsBy){
          id
          fullName
          displayName
          description
          prepay
          term
          rates(filterRatesBy:$filterRatesBy) {
            totalApplicableRate
            totalApplicableRateWithMonthlySubscriptionFees
            kwhUsage
            serviceProvider
            serviceProviderConsumptionRate
            serviceProviderStandingRate
            loadZone
            totalApplicableDayRate
            totalApplicableDayRateWithMonthlySubscriptionFees
            totalApplicableNightRate
            totalApplicableNightRateWithMonthlySubscriptionFees
            loadZoneDayTimeConsumptionRate
            loadZoneNightTimeConsumptionRate
            loadZoneConsumptionRate
            serviceProviderStandingRateUnitType
            serviceProviderConsumptionRateUnitType
            loadZoneDayTimeRateUnitType
            loadZoneNightTimeRateUnitType
            loadZoneConsumptionRateUnitType
          }
    }
}
`
const variables = {
    "filterProductsBy":{
        id: 21,
    },
    "filterRatesBy":{
        kwhUsage:2520.25,
    }
}


axios({
  url: apiUrl,
  method: "post",
  data: {
    query: query,
    variables: variables,
  },
  headers: headers,
}).then((response) => {
  console.log(JSON.stringify(response.data, null, 4));
});
import axios from 'axios';

// const API_URL = "https://api.oeus-kraken.energy/v1/graphql/" // Prod
export const apiUrl = "https://api.oeus-kraken.systems/v1/graphql/" // Test
let headers = {'content-type': 'application/json'}


export const query = `
query productsWithConciseApplicableRates(
    $filterProductsBy: ProductInput
    $filterRatesBy: ConciseRatesInput
  ){
  productsWithConciseApplicableRates(filterProductsBy:$filterProductsBy){
      id
      fullName
      displayName
      description
      prepay
      term
      rates(filterRatesBy:$filterRatesBy) {
        totalApplicableRate
        totalApplicableRateWithMonthlySubscriptionFees
        kwhUsage
        serviceProvider
        serviceProviderConsumptionRate
        serviceProviderStandingRate
        loadZone
        totalApplicableDayRate
        totalApplicableDayRateWithMonthlySubscriptionFees
        totalApplicableNightRate
        totalApplicableNightRateWithMonthlySubscriptionFees
        loadZoneDayTimeConsumptionRate
        loadZoneNightTimeConsumptionRate
        loadZoneConsumptionRate
        serviceProviderStandingRateUnitType
        serviceProviderConsumptionRateUnitType
        loadZoneDayTimeRateUnitType
        loadZoneNightTimeRateUnitType
        loadZoneConsumptionRateUnitType
      }
    }
}
`
export const variables = {
  "filterProductsBy":{
    id: 21,
  },
  "filterRatesBy":{
    kwhUsage:2520.25,
  }
}


axios({
  url: apiUrl,
  method: "post",
  data: {
    query: query,
    variables: variables,
  },
  headers: headers,
}).then((response) => {
  console.log(JSON.stringify(response.data, null, 4));
});
{
  "data": {
    "productsWithConciseApplicableRates": [
      {
        "id": "21",
        "fullName": "OctoPlus 90 Day Fixed",
        "displayName": "OctoPlus 90 Day Fixed",
        "description": "90 day fixed rate",
        "prepay": false,
        "term": 3,
        "rates": [
          {
            "totalApplicableRate": "10.24218906854478722348973316",
            "totalApplicableRateWithMonthlySubscriptionFees": "10.24218906854478722348973316",
            "kwhUsage": "2520.25",
            "serviceProvider": "CENTERPOINT",
            "serviceProviderConsumptionRate": "3.29990",
            "serviceProviderStandingRate": "439.00000",
            "loadZone": "LZ_HOUSTON",
            "totalApplicableDayRate": null,
            "totalApplicableDayRateWithMonthlySubscriptionFees": null,
            "totalApplicableNightRate": null,
            "totalApplicableNightRateWithMonthlySubscriptionFees": null,
            "loadZoneDayTimeConsumptionRate": null,
            "loadZoneNightTimeConsumptionRate": null,
            "loadZoneConsumptionRate": "6.76810",
            "serviceProviderStandingRateUnitType": "MONTHS_ON_SUPPLY_PER_DIEM",
            "serviceProviderConsumptionRateUnitType": "KWH_CONSUMPTION",
            "loadZoneDayTimeRateUnitType": null,
            "loadZoneNightTimeRateUnitType": null,
            "loadZoneConsumptionRateUnitType": "KWH_CONSUMPTION"
          }
        ]
      }
    ]
  }
}

Using ESI ID

ESI ID is a unique identifier assigned to each household in Texas. Customers can locate their ESI ID on their electricity bill or contact their energy retailer. We use ESI ID to determine the service provider and then return rates that are applicable to the customer.

The following example uses an ESI ID to get products with rates:

query productsWithConciseApplicableRates($filterRatesBy:ConciseRatesInput){
productsWithConciseApplicableRates{
    id
    fullName
    displayName
    description
    prepay
    rates(filterRatesBy:$filterRatesBy){
      totalApplicableRate
      totalApplicableRateWithMonthlySubscriptionFees
      kwhUsage
      serviceProvider
      serviceProviderConsumptionRate
      serviceProviderStandingRate
      loadZone
      totalApplicableDayRate
      totalApplicableDayRateWithMonthlySubscriptionFees
      totalApplicableNightRate
      totalApplicableNightRateWithMonthlySubscriptionFees
      loadZoneDayTimeConsumptionRate
      loadZoneNightTimeConsumptionRate
      loadZoneConsumptionRate
      serviceProviderStandingRateUnitType
      serviceProviderConsumptionRateUnitType
      loadZoneDayTimeRateUnitType
      loadZoneNightTimeRateUnitType
      loadZoneConsumptionRateUnitType
    }
  }
}
1
2
3
4
5
6
Input variables
{
    filterRatesBy:{
        esiId:"100890102490000008"
    }
}
import pprint

import requests

# API_URL = "https://api.oeus-kraken.energy/v1/graphql/" # Prod
API_URL = "https://api.oeus-kraken.systems/v1/graphql/" # Test
HEADERS = {}

QUERY = """
    query productsWithConciseApplicableRates($filterRatesBy:ConciseRatesInput){
    productsWithConciseApplicableRates{
        id
        fullName
        displayName
        description
        prepay
        rates(filterRatesBy:$filterRatesBy){
          totalApplicableRate
          totalApplicableRateWithMonthlySubscriptionFees
          kwhUsage
          serviceProvider
          serviceProviderConsumptionRate
          serviceProviderStandingRate
          loadZone
          totalApplicableDayRate
          totalApplicableDayRateWithMonthlySubscriptionFees
          totalApplicableNightRate
          totalApplicableNightRateWithMonthlySubscriptionFees
          loadZoneDayTimeConsumptionRate
          loadZoneNightTimeConsumptionRate
          loadZoneConsumptionRate
          serviceProviderStandingRateUnitType
          serviceProviderConsumptionRateUnitType
          loadZoneDayTimeRateUnitType
          loadZoneNightTimeRateUnitType
          loadZoneConsumptionRateUnitType
        }
      }
    }
"""

VARIABLES = {
    "filterRatesBy":{
        "esiId":"100890102490000008"
    }
}


session = requests.Session()
session.headers.update(HEADERS)
response = session.post(
    url=API_URL,
    json={"query": QUERY, "variables": VARIABLES}
)
pprint.pprint(response.json())
const axios = require("axios")

// const API_URL = "https://api.oeus-kraken.energy/v1/graphql/" // Prod
const apiUrl = "https://api.oeus-kraken.systems/v1/graphql/" // Test
let headers = {'content-type': 'application/json'}

const query = `
    query productsWithConciseApplicableRates($filterRatesBy:ConciseRatesInput){
      productsWithConciseApplicableRates{
        id
        fullName
        displayName
        description
        prepay
        rates(filterRatesBy:$filterRatesBy){
            totalApplicableRate
            totalApplicableRateWithMonthlySubscriptionFees
            kwhUsage
            serviceProvider
            serviceProviderConsumptionRate
            serviceProviderStandingRate
            loadZone
            totalApplicableDayRate
            totalApplicableDayRateWithMonthlySubscriptionFees
            totalApplicableNightRate
            totalApplicableNightRateWithMonthlySubscriptionFees
            loadZoneDayTimeConsumptionRate
            loadZoneNightTimeConsumptionRate
            loadZoneConsumptionRate
            serviceProviderStandingRateUnitType
            serviceProviderConsumptionRateUnitType
            loadZoneDayTimeRateUnitType
            loadZoneNightTimeRateUnitType
            loadZoneConsumptionRateUnitType
        }
      }
    }
`
const variables = {
    filterRatesBy:{
        esiId:"100890102490000008"
    }
}

axios({
  url: apiUrl,
  method: "post",
  data: {
    query: query,
    variables: variables,
  },
  headers: headers,
}).then((response) => {
  console.log(JSON.stringify(response.data, null, 4));
});
import axios from 'axios';

// const API_URL = "https://api.oeus-kraken.energy/v1/graphql/" // Prod
export const apiUrl = "https://api.oeus-kraken.systems/v1/graphql/" // Test
let headers = {'content-type': 'application/json'}


export const query = `
query productsWithConciseApplicableRates(
    $filterProductsBy: ProductInput
    $filterRatesBy: ConciseRatesInput
  ){
  productsWithConciseApplicableRates(filterProductsBy:$filterProductsBy){
      id
      fullName
      displayName
      description
      prepay
      term
      rates(filterRatesBy:$filterRatesBy) {
        totalApplicableRate
        totalApplicableRateWithMonthlySubscriptionFees
        kwhUsage
        serviceProvider
        serviceProviderConsumptionRate
        serviceProviderStandingRate
        loadZone
        totalApplicableDayRate
        totalApplicableDayRateWithMonthlySubscriptionFees
        totalApplicableNightRate
        totalApplicableNightRateWithMonthlySubscriptionFees
        loadZoneDayTimeConsumptionRate
        loadZoneNightTimeConsumptionRate
        loadZoneConsumptionRate
        serviceProviderStandingRateUnitType
        serviceProviderConsumptionRateUnitType
        loadZoneDayTimeRateUnitType
        loadZoneNightTimeRateUnitType
        loadZoneConsumptionRateUnitType
      }
    }
}
`
export const variables = {
  filterRatesBy:{
    esiId: "100890102490000008"
  }
}


axios({
  url: apiUrl,
  method: "post",
  data: {
    query: query,
    variables: variables,
  },
  headers: headers,
}).then((response) => {
  console.log(JSON.stringify(response.data, null, 4));
});
  1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
{
  "data": {
    "productsWithConciseApplicableRates": [
      {
        "id": "16",
        "fullName": "Octopus Energy MTM",
        "displayName": "Octopus Energy MTM",
        "description": "Postpay Month-to-month rates, no contract",
        "prepay": false,
        "rates": [
          {
            "totalApplicableRate": "11.65270",
            "totalApplicableRateWithMonthlySubscriptionFees": "12.65270",
            "kwhUsage": "1000",
            "serviceProvider": "CENTERPOINT",
            "serviceProviderConsumptionRate": "4.63970",
            "serviceProviderStandingRate": "439.00000",
            "loadZone": "LZ_HOUSTON",
            "totalApplicableDayRate": null,
            "totalApplicableDayRateWithMonthlySubscriptionFees": null,
            "totalApplicableNightRate": null,
            "totalApplicableNightRateWithMonthlySubscriptionFees": null,
            "loadZoneDayTimeConsumptionRate": null,
            "loadZoneNightTimeConsumptionRate": null,
            "loadZoneConsumptionRate": "6.57400",
            "serviceProviderStandingRateUnitType": "MONTHS_ON_SUPPLY_PER_DIEM",
            "serviceProviderConsumptionRateUnitType": "KWH_CONSUMPTION",
            "loadZoneDayTimeRateUnitType": null,
            "loadZoneNightTimeRateUnitType": null,
            "loadZoneConsumptionRateUnitType": "KWH_CONSUMPTION"
          }
        ]
      },
      {
        "id": "2",
        "fullName": "Pre-Pay Wholesale",
        "displayName": "Pre-Pay Wholesale",
        "description": "Wholesale rate for 30 days",
        "prepay": true,
        "rates": []
      },
      {
        "id": "20",
        "fullName": "OctoExtra 365 Day Fixed",
        "displayName": "OctoExtra 365 Day Fixed",
        "description": "12 month fixed rate",
        "prepay": false,
        "rates": [
          {
            "totalApplicableRate": "11.59970",
            "totalApplicableRateWithMonthlySubscriptionFees": "12.59970",
            "kwhUsage": "1000",
            "serviceProvider": "CENTERPOINT",
            "serviceProviderConsumptionRate": "4.63970",
            "serviceProviderStandingRate": "439.00000",
            "loadZone": "LZ_HOUSTON",
            "totalApplicableDayRate": null,
            "totalApplicableDayRateWithMonthlySubscriptionFees": null,
            "totalApplicableNightRate": null,
            "totalApplicableNightRateWithMonthlySubscriptionFees": null,
            "loadZoneDayTimeConsumptionRate": null,
            "loadZoneNightTimeConsumptionRate": null,
            "loadZoneConsumptionRate": "6.52100",
            "serviceProviderStandingRateUnitType": "MONTHS_ON_SUPPLY_PER_DIEM",
            "serviceProviderConsumptionRateUnitType": "KWH_CONSUMPTION",
            "loadZoneDayTimeRateUnitType": null,
            "loadZoneNightTimeRateUnitType": null,
            "loadZoneConsumptionRateUnitType": "KWH_CONSUMPTION"
          }
        ]
      },
      {
        "id": "21",
        "fullName": "OctoExtra 90 Day Fixed",
        "displayName": "OctoExtra 90 Day Fixed",
        "description": "90 day fixed rate.",
        "prepay": false,
        "rates": [
          {
            "totalApplicableRate": "12.23070",
            "totalApplicableRateWithMonthlySubscriptionFees": "13.23070",
            "kwhUsage": "1000",
            "serviceProvider": "CENTERPOINT",
            "serviceProviderConsumptionRate": "4.63970",
            "serviceProviderStandingRate": "439.00000",
            "loadZone": "LZ_HOUSTON",
            "totalApplicableDayRate": null,
            "totalApplicableDayRateWithMonthlySubscriptionFees": null,
            "totalApplicableNightRate": null,
            "totalApplicableNightRateWithMonthlySubscriptionFees": null,
            "loadZoneDayTimeConsumptionRate": null,
            "loadZoneNightTimeConsumptionRate": null,
            "loadZoneConsumptionRate": "7.15200",
            "serviceProviderStandingRateUnitType": "MONTHS_ON_SUPPLY_PER_DIEM",
            "serviceProviderConsumptionRateUnitType": "KWH_CONSUMPTION",
            "loadZoneDayTimeRateUnitType": null,
            "loadZoneNightTimeRateUnitType": null,
            "loadZoneConsumptionRateUnitType": "KWH_CONSUMPTION"
          }
        ]
      },
      {
        "id": "19",
        "fullName": "OctoPlus 90 Day Fixed",
        "displayName": "OctoPlus 90 Day Fixed",
        "description": "90 day fixed rate.",
        "prepay": false,
        "rates": [
          {
            "totalApplicableRate": "12.03070",
            "totalApplicableRateWithMonthlySubscriptionFees": "13.03070",
            "kwhUsage": "1000",
            "serviceProvider": "CENTERPOINT",
            "serviceProviderConsumptionRate": "4.63970",
            "serviceProviderStandingRate": "439.00000",
            "loadZone": "LZ_HOUSTON",
            "totalApplicableDayRate": null,
            "totalApplicableDayRateWithMonthlySubscriptionFees": null,
            "totalApplicableNightRate": null,
            "totalApplicableNightRateWithMonthlySubscriptionFees": null,
            "loadZoneDayTimeConsumptionRate": null,
            "loadZoneNightTimeConsumptionRate": null,
            "loadZoneConsumptionRate": "6.95200",
            "serviceProviderStandingRateUnitType": "MONTHS_ON_SUPPLY_PER_DIEM",
            "serviceProviderConsumptionRateUnitType": "KWH_CONSUMPTION",
            "loadZoneDayTimeRateUnitType": null,
            "loadZoneNightTimeRateUnitType": null,
            "loadZoneConsumptionRateUnitType": "KWH_CONSUMPTION"
          }
        ]
      },
      {
        "id": "39",
        "fullName": "OctoGo 12M",
        "displayName": "OctoGo 12M",
        "description": "Prepaid 12 Month Fixed Rate with no exit fees.",
        "prepay": true,
        "rates": [
          {
            "totalApplicableRate": "11.19970",
            "totalApplicableRateWithMonthlySubscriptionFees": "12.19970",
            "kwhUsage": "1000",
            "serviceProvider": "CENTERPOINT",
            "serviceProviderConsumptionRate": "4.63970",
            "serviceProviderStandingRate": "439.00000",
            "loadZone": "LZ_HOUSTON",
            "totalApplicableDayRate": null,
            "totalApplicableDayRateWithMonthlySubscriptionFees": null,
            "totalApplicableNightRate": null,
            "totalApplicableNightRateWithMonthlySubscriptionFees": null,
            "loadZoneDayTimeConsumptionRate": null,
            "loadZoneNightTimeConsumptionRate": null,
            "loadZoneConsumptionRate": "6.12100",
            "serviceProviderStandingRateUnitType": "MONTHS_ON_SUPPLY_PER_DIEM",
            "serviceProviderConsumptionRateUnitType": "KWH_CONSUMPTION",
            "loadZoneDayTimeRateUnitType": null,
            "loadZoneNightTimeRateUnitType": null,
            "loadZoneConsumptionRateUnitType": "KWH_CONSUMPTION"
          }
        ]
      },
      {
        "id": "32",
        "fullName": "OctoGo 30",
        "displayName": "OctoGo 30",
        "description": "30 Day Fixed Rate",
        "prepay": true,
        "rates": [
          {
            "totalApplicableRate": "11.76950",
            "totalApplicableRateWithMonthlySubscriptionFees": "12.76950",
            "kwhUsage": "1000",
            "serviceProvider": "CENTERPOINT",
            "serviceProviderConsumptionRate": "4.63970",
            "serviceProviderStandingRate": "439.00000",
            "loadZone": "LZ_HOUSTON",
            "totalApplicableDayRate": null,
            "totalApplicableDayRateWithMonthlySubscriptionFees": null,
            "totalApplicableNightRate": null,
            "totalApplicableNightRateWithMonthlySubscriptionFees": null,
            "loadZoneDayTimeConsumptionRate": null,
            "loadZoneNightTimeConsumptionRate": null,
            "loadZoneConsumptionRate": "6.69080",
            "serviceProviderStandingRateUnitType": "MONTHS_ON_SUPPLY_PER_DIEM",
            "serviceProviderConsumptionRateUnitType": "KWH_CONSUMPTION",
            "loadZoneDayTimeRateUnitType": null,
            "loadZoneNightTimeRateUnitType": null,
            "loadZoneConsumptionRateUnitType": "KWH_CONSUMPTION"
          }
        ]
      },
      {
        "id": "33",
        "fullName": "OctoGo 90",
        "displayName": "OctoGo 90",
        "description": "90 Day Fixed Rate",
        "prepay": true,
        "rates": [
          {
            "totalApplicableRate": "12.03070",
            "totalApplicableRateWithMonthlySubscriptionFees": "13.03070",
            "kwhUsage": "1000",
            "serviceProvider": "CENTERPOINT",
            "serviceProviderConsumptionRate": "4.63970",
            "serviceProviderStandingRate": "439.00000",
            "loadZone": "LZ_HOUSTON",
            "totalApplicableDayRate": null,
            "totalApplicableDayRateWithMonthlySubscriptionFees": null,
            "totalApplicableNightRate": null,
            "totalApplicableNightRateWithMonthlySubscriptionFees": null,
            "loadZoneDayTimeConsumptionRate": null,
            "loadZoneNightTimeConsumptionRate": null,
            "loadZoneConsumptionRate": "6.95200",
            "serviceProviderStandingRateUnitType": "MONTHS_ON_SUPPLY_PER_DIEM",
            "serviceProviderConsumptionRateUnitType": "KWH_CONSUMPTION",
            "loadZoneDayTimeRateUnitType": null,
            "loadZoneNightTimeRateUnitType": null,
            "loadZoneConsumptionRateUnitType": "KWH_CONSUMPTION"
          }
        ]
      },
      {
        "id": "34",
        "fullName": "OctoGo MTM",
        "displayName": "OctoGo MTM",
        "description": "Month-to-month fixed rate",
        "prepay": true,
        "rates": [
          {
            "totalApplicableRate": "11.65270",
            "totalApplicableRateWithMonthlySubscriptionFees": "12.65270",
            "kwhUsage": "1000",
            "serviceProvider": "CENTERPOINT",
            "serviceProviderConsumptionRate": "4.63970",
            "serviceProviderStandingRate": "439.00000",
            "loadZone": "LZ_HOUSTON",
            "totalApplicableDayRate": null,
            "totalApplicableDayRateWithMonthlySubscriptionFees": null,
            "totalApplicableNightRate": null,
            "totalApplicableNightRateWithMonthlySubscriptionFees": null,
            "loadZoneDayTimeConsumptionRate": null,
            "loadZoneNightTimeConsumptionRate": null,
            "loadZoneConsumptionRate": "6.57400",
            "serviceProviderStandingRateUnitType": "MONTHS_ON_SUPPLY_PER_DIEM",
            "serviceProviderConsumptionRateUnitType": "KWH_CONSUMPTION",
            "loadZoneDayTimeRateUnitType": null,
            "loadZoneNightTimeRateUnitType": null,
            "loadZoneConsumptionRateUnitType": "KWH_CONSUMPTION"
          }
        ]
      },
      {
        "id": "36",
        "fullName": "OctoPlus 24M",
        "displayName": "OctoPlus 24M",
        "description": "24 Month Fixed Rate with no exit fees.",
        "prepay": false,
        "rates": [
          {
            "totalApplicableRate": "10.49970",
            "totalApplicableRateWithMonthlySubscriptionFees": "11.49970",
            "kwhUsage": "1000",
            "serviceProvider": "CENTERPOINT",
            "serviceProviderConsumptionRate": "4.63970",
            "serviceProviderStandingRate": "439.00000",
            "loadZone": "LZ_HOUSTON",
            "totalApplicableDayRate": null,
            "totalApplicableDayRateWithMonthlySubscriptionFees": null,
            "totalApplicableNightRate": null,
            "totalApplicableNightRateWithMonthlySubscriptionFees": null,
            "loadZoneDayTimeConsumptionRate": null,
            "loadZoneNightTimeConsumptionRate": null,
            "loadZoneConsumptionRate": "5.42100",
            "serviceProviderStandingRateUnitType": "MONTHS_ON_SUPPLY_PER_DIEM",
            "serviceProviderConsumptionRateUnitType": "KWH_CONSUMPTION",
            "loadZoneDayTimeRateUnitType": null,
            "loadZoneNightTimeRateUnitType": null,
            "loadZoneConsumptionRateUnitType": "KWH_CONSUMPTION"
          }
        ]
      },
      {
        "id": "37",
        "fullName": "OctoPlus 36M",
        "displayName": "OctoPlus 36M",
        "description": "36 Month Fixed Rate with no exit fees.",
        "prepay": false,
        "rates": [
          {
            "totalApplicableRate": "10.39970",
            "totalApplicableRateWithMonthlySubscriptionFees": "11.39970",
            "kwhUsage": "1000",
            "serviceProvider": "CENTERPOINT",
            "serviceProviderConsumptionRate": "4.63970",
            "serviceProviderStandingRate": "439.00000",
            "loadZone": "LZ_HOUSTON",
            "totalApplicableDayRate": null,
            "totalApplicableDayRateWithMonthlySubscriptionFees": null,
            "totalApplicableNightRate": null,
            "totalApplicableNightRateWithMonthlySubscriptionFees": null,
            "loadZoneDayTimeConsumptionRate": null,
            "loadZoneNightTimeConsumptionRate": null,
            "loadZoneConsumptionRate": "5.32100",
            "serviceProviderStandingRateUnitType": "MONTHS_ON_SUPPLY_PER_DIEM",
            "serviceProviderConsumptionRateUnitType": "KWH_CONSUMPTION",
            "loadZoneDayTimeRateUnitType": null,
            "loadZoneNightTimeRateUnitType": null,
            "loadZoneConsumptionRateUnitType": "KWH_CONSUMPTION"
          }
        ]
      },
      {
        "id": "38",
        "fullName": "OctoPlus 12M",
        "displayName": "OctoPlus 12M",
        "description": "12 Month Fixed Rate with no exit fees.",
        "prepay": false,
        "rates": [
          {
            "totalApplicableRate": "11.19970",
            "totalApplicableRateWithMonthlySubscriptionFees": "12.19970",
            "kwhUsage": "1000",
            "serviceProvider": "CENTERPOINT",
            "serviceProviderConsumptionRate": "4.63970",
            "serviceProviderStandingRate": "439.00000",
            "loadZone": "LZ_HOUSTON",
            "totalApplicableDayRate": null,
            "totalApplicableDayRateWithMonthlySubscriptionFees": null,
            "totalApplicableNightRate": null,
            "totalApplicableNightRateWithMonthlySubscriptionFees": null,
            "loadZoneDayTimeConsumptionRate": null,
            "loadZoneNightTimeConsumptionRate": null,
            "loadZoneConsumptionRate": "6.12100",
            "serviceProviderStandingRateUnitType": "MONTHS_ON_SUPPLY_PER_DIEM",
            "serviceProviderConsumptionRateUnitType": "KWH_CONSUMPTION",
            "loadZoneDayTimeRateUnitType": null,
            "loadZoneNightTimeRateUnitType": null,
            "loadZoneConsumptionRateUnitType": "KWH_CONSUMPTION"
          }
        ]
      },
      {
        "id": "22",
        "fullName": "OctoDrive 365 Day Fixed",
        "displayName": "OctoDrive 365 Day Fixed",
        "description": "12 month Time-of-Use fixed rate",
        "prepay": false,
        "rates": [
          {
            "totalApplicableRate": "0",
            "totalApplicableRateWithMonthlySubscriptionFees": "0",
            "kwhUsage": "1000",
            "serviceProvider": "CENTERPOINT",
            "serviceProviderConsumptionRate": "4.63970",
            "serviceProviderStandingRate": "439.00000",
            "loadZone": "LZ_HOUSTON",
            "totalApplicableDayRate": "9.92070",
            "totalApplicableDayRateWithMonthlySubscriptionFees": "10.92070",
            "totalApplicableNightRate": "9.53870",
            "totalApplicableNightRateWithMonthlySubscriptionFees": "10.53870",
            "loadZoneDayTimeConsumptionRate": "4.84200",
            "loadZoneNightTimeConsumptionRate": "4.46000",
            "loadZoneConsumptionRate": null,
            "serviceProviderStandingRateUnitType": "MONTHS_ON_SUPPLY_PER_DIEM",
            "serviceProviderConsumptionRateUnitType": "KWH_CONSUMPTION",
            "loadZoneDayTimeRateUnitType": "KWH_CONSUMPTION",
            "loadZoneNightTimeRateUnitType": "KWH_CONSUMPTION",
            "loadZoneConsumptionRateUnitType": null
          }
        ]
      },
      {
        "id": "40",
        "fullName": "Intelligent Octopus 12M",
        "displayName": "Intelligent Octopus 12M",
        "description": "This product is based on a 1 cent discount from Octoplus 12M. Customers are offered this discounted rate when adding a smart device (ECOBEE smart thermostat) to their Octopus energy app and allowing Octopus Energy to pause their central heating/ cooling system.",
        "prepay": false,
        "rates": [
          {
            "totalApplicableRate": "5.07870",
            "totalApplicableRateWithMonthlySubscriptionFees": "6.07870",
            "kwhUsage": "1000",
            "serviceProvider": "CENTERPOINT",
            "serviceProviderConsumptionRate": "4.63970",
            "serviceProviderStandingRate": "439.00000",
            "loadZone": "LZ_HOUSTON",
            "totalApplicableDayRate": null,
            "totalApplicableDayRateWithMonthlySubscriptionFees": null,
            "totalApplicableNightRate": null,
            "totalApplicableNightRateWithMonthlySubscriptionFees": null,
            "loadZoneDayTimeConsumptionRate": null,
            "loadZoneNightTimeConsumptionRate": null,
            "loadZoneConsumptionRate": "0.00000",
            "serviceProviderStandingRateUnitType": "MONTHS_ON_SUPPLY_PER_DIEM",
            "serviceProviderConsumptionRateUnitType": "KWH_CONSUMPTION",
            "loadZoneDayTimeRateUnitType": null,
            "loadZoneNightTimeRateUnitType": null,
            "loadZoneConsumptionRateUnitType": "KWH_CONSUMPTION"
          }
        ]
      }
    ]
  }
}

Using service provider (TDSP)

query productsWithConciseApplicableRates($filterRatesBy:ConciseRatesInput){
  productsWithConciseApplicableRates{
      id
      fullName
      displayName
      description
      prepay
      rates(filterRatesBy:$filterRatesBy){
        totalApplicableRate
        totalApplicableRateWithMonthlySubscriptionFees
        kwhUsage
        serviceProvider
        serviceProviderConsumptionRate
        serviceProviderStandingRate
        loadZone
        totalApplicableDayRate
        totalApplicableDayRateWithMonthlySubscriptionFees
        totalApplicableNightRate
        totalApplicableNightRateWithMonthlySubscriptionFees
        loadZoneDayTimeConsumptionRate
        loadZoneNightTimeConsumptionRate
        loadZoneConsumptionRate
        serviceProviderStandingRateUnitType
        serviceProviderConsumptionRateUnitType
        loadZoneDayTimeRateUnitType
        loadZoneNightTimeRateUnitType
        loadZoneConsumptionRateUnitType
      }
    }
  }
1
2
3
4
5
6
Input variables
{
    "filterRatesBy":{
      "serviceProvider": "CENTERPOINT"
    }
}
import pprint

import requests

# API_URL = "https://api.oeus-kraken.energy/v1/graphql/" # Prod
API_URL = "https://api.oeus-kraken.systems/v1/graphql/" # Test
HEADERS = {}

QUERY = """
query productsWithConciseApplicableRates($filterRatesBy:ConciseRatesInput){
    productsWithConciseApplicableRates{
      id
      fullName
      displayName
      description
      prepay
      rates(filterRatesBy:$filterRatesBy){
        totalApplicableRate
        totalApplicableRateWithMonthlySubscriptionFees
        kwhUsage
        serviceProvider
        serviceProviderConsumptionRate
        serviceProviderStandingRate
        loadZone
        totalApplicableDayRate
        totalApplicableDayRateWithMonthlySubscriptionFees
        totalApplicableNightRate
        totalApplicableNightRateWithMonthlySubscriptionFees
        loadZoneDayTimeConsumptionRate
        loadZoneNightTimeConsumptionRate
        loadZoneConsumptionRate
        serviceProviderStandingRateUnitType
        serviceProviderConsumptionRateUnitType
        loadZoneDayTimeRateUnitType
        loadZoneNightTimeRateUnitType
        loadZoneConsumptionRateUnitType
      }
    }
  }
"""

VARIABLES = {
    "filterRatesBy":{
      "serviceProvider": "CENTERPOINT"
    }
}


session = requests.Session()
session.headers.update(HEADERS)
response = session.post(
    url=API_URL,
    json={"query": QUERY, "variables": VARIABLES}
)
pprint.pprint(response.json())
const axios = require("axios")

// const API_URL = "https://api.oeus-kraken.energy/v1/graphql/" // Prod
const apiUrl = "https://api.oeus-kraken.systems/v1/graphql/" // Test
let headers = {'content-type': 'application/json'}

const query = `
  query productsWithConciseApplicableRates($filterRatesBy:ConciseRatesInput){
  productsWithConciseApplicableRates{
      id
      fullName
      displayName
      description
      prepay
      rates(filterRatesBy:$filterRatesBy){
        totalApplicableRate
        totalApplicableRateWithMonthlySubscriptionFees
        kwhUsage
        serviceProvider
        serviceProviderConsumptionRate
        serviceProviderStandingRate
        loadZone
        totalApplicableDayRate
        totalApplicableDayRateWithMonthlySubscriptionFees
        totalApplicableNightRate
        totalApplicableNightRateWithMonthlySubscriptionFees
        loadZoneDayTimeConsumptionRate
        loadZoneNightTimeConsumptionRate
        loadZoneConsumptionRate
        serviceProviderStandingRateUnitType
        serviceProviderConsumptionRateUnitType
        loadZoneDayTimeRateUnitType
        loadZoneNightTimeRateUnitType
        loadZoneConsumptionRateUnitType
      }
    }
  }
    `
const variables = {
    "filterRatesBy":{
      "serviceProvider": "CENTERPOINT"
    }
}

axios({
  url: apiUrl,
  method: "post",
  data: {
    query: query,
    variables: variables,
  },
  headers: headers,
}).then((response) => {
  console.log(JSON.stringify(response.data, null, 4));
});
import axios from 'axios';

// const API_URL = "https://api.oeus-kraken.energy/v1/graphql/" // Prod
export const apiUrl = "https://api.oeus-kraken.systems/v1/graphql/" // Test
let headers = {'content-type': 'application/json'}


export const query = `
query productsWithConciseApplicableRates(
    $filterProductsBy: ProductInput
    $filterRatesBy: ConciseRatesInput
  ){
  productsWithConciseApplicableRates(filterProductsBy:$filterProductsBy){
      id
      fullName
      displayName
      description
      prepay
      term
      rates(filterRatesBy:$filterRatesBy) {
        totalApplicableRate
        totalApplicableRateWithMonthlySubscriptionFees
        kwhUsage
        serviceProvider
        serviceProviderConsumptionRate
        serviceProviderStandingRate
        loadZone
        totalApplicableDayRate
        totalApplicableDayRateWithMonthlySubscriptionFees
        totalApplicableNightRate
        totalApplicableNightRateWithMonthlySubscriptionFees
        loadZoneDayTimeConsumptionRate
        loadZoneNightTimeConsumptionRate
        loadZoneConsumptionRate
        serviceProviderStandingRateUnitType
        serviceProviderConsumptionRateUnitType
        loadZoneDayTimeRateUnitType
        loadZoneNightTimeRateUnitType
        loadZoneConsumptionRateUnitType
      }
    }
}
`
export const variables = {
    "filterRatesBy":{
      "serviceProvider": "CENTERPOINT"
    }
}


axios({
  url: apiUrl,
  method: "post",
  data: {
    query: query,
    variables: variables,
  },
  headers: headers,
}).then((response) => {
  console.log(JSON.stringify(response.data, null, 4));
});
{
  "data": {
    "productsWithConciseApplicableRates": [
      {
        "id": "16",
        "fullName": "Octopus Energy MTM",
        "displayName": "Octopus Energy MTM",
        "description": "Postpay Month-to-month rates, no contract",
        "prepay": false,
        "rates": [
          {
            "totalApplicableRate": "11.65270",
            "totalApplicableRateWithMonthlySubscriptionFees": "12.65270",
            "kwhUsage": "1000",
            "serviceProvider": "CENTERPOINT",
            "serviceProviderConsumptionRate": "4.63970",
            "serviceProviderStandingRate": "439.00000",
            "loadZone": "LZ_HOUSTON",
            "totalApplicableDayRate": null,
            "totalApplicableDayRateWithMonthlySubscriptionFees": null,
            "totalApplicableNightRate": null,
            "totalApplicableNightRateWithMonthlySubscriptionFees": null,
            "loadZoneDayTimeConsumptionRate": null,
            "loadZoneNightTimeConsumptionRate": null,
            "loadZoneConsumptionRate": "6.57400",
            "serviceProviderStandingRateUnitType": "MONTHS_ON_SUPPLY_PER_DIEM",
            "serviceProviderConsumptionRateUnitType": "KWH_CONSUMPTION",
            "loadZoneDayTimeRateUnitType": null,
            "loadZoneNightTimeRateUnitType": null,
            "loadZoneConsumptionRateUnitType": "KWH_CONSUMPTION"
          }
        ]
      },
      {
        "id": "2",
        "fullName": "Pre-Pay Wholesale",
        "displayName": "Pre-Pay Wholesale",
        "description": "Wholesale rate for 30 days",
        "prepay": true,
        "rates": []
      },
      {
        "id": "20",
        "fullName": "OctoExtra 365 Day Fixed",
        "displayName": "OctoExtra 365 Day Fixed",
        "description": "12 month fixed rate",
        "prepay": false,
        "rates": [
          {
            "totalApplicableRate": "11.59970",
            "totalApplicableRateWithMonthlySubscriptionFees": "12.59970",
            "kwhUsage": "1000",
            "serviceProvider": "CENTERPOINT",
            "serviceProviderConsumptionRate": "4.63970",
            "serviceProviderStandingRate": "439.00000",
            "loadZone": "LZ_HOUSTON",
            "totalApplicableDayRate": null,
            "totalApplicableDayRateWithMonthlySubscriptionFees": null,
            "totalApplicableNightRate": null,
            "totalApplicableNightRateWithMonthlySubscriptionFees": null,
            "loadZoneDayTimeConsumptionRate": null,
            "loadZoneNightTimeConsumptionRate": null,
            "loadZoneConsumptionRate": "6.52100",
            "serviceProviderStandingRateUnitType": "MONTHS_ON_SUPPLY_PER_DIEM",
            "serviceProviderConsumptionRateUnitType": "KWH_CONSUMPTION",
            "loadZoneDayTimeRateUnitType": null,
            "loadZoneNightTimeRateUnitType": null,
            "loadZoneConsumptionRateUnitType": "KWH_CONSUMPTION"
          }
        ]
      },
      {
        "id": "21",
        "fullName": "OctoExtra 90 Day Fixed",
        "displayName": "OctoExtra 90 Day Fixed",
        "description": "90 day fixed rate.",
        "prepay": false,
        "rates": [
          {
            "totalApplicableRate": "12.23070",
            "totalApplicableRateWithMonthlySubscriptionFees": "13.23070",
            "kwhUsage": "1000",
            "serviceProvider": "CENTERPOINT",
            "serviceProviderConsumptionRate": "4.63970",
            "serviceProviderStandingRate": "439.00000",
            "loadZone": "LZ_HOUSTON",
            "totalApplicableDayRate": null,
            "totalApplicableDayRateWithMonthlySubscriptionFees": null,
            "totalApplicableNightRate": null,
            "totalApplicableNightRateWithMonthlySubscriptionFees": null,
            "loadZoneDayTimeConsumptionRate": null,
            "loadZoneNightTimeConsumptionRate": null,
            "loadZoneConsumptionRate": "7.15200",
            "serviceProviderStandingRateUnitType": "MONTHS_ON_SUPPLY_PER_DIEM",
            "serviceProviderConsumptionRateUnitType": "KWH_CONSUMPTION",
            "loadZoneDayTimeRateUnitType": null,
            "loadZoneNightTimeRateUnitType": null,
            "loadZoneConsumptionRateUnitType": "KWH_CONSUMPTION"
          }
        ]
      },
      {
        "id": "19",
        "fullName": "OctoPlus 90 Day Fixed",
        "displayName": "OctoPlus 90 Day Fixed",
        "description": "90 day fixed rate.",
        "prepay": false,
        "rates": [
          {
            "totalApplicableRate": "12.03070",
            "totalApplicableRateWithMonthlySubscriptionFees": "13.03070",
            "kwhUsage": "1000",
            "serviceProvider": "CENTERPOINT",
            "serviceProviderConsumptionRate": "4.63970",
            "serviceProviderStandingRate": "439.00000",
            "loadZone": "LZ_HOUSTON",
            "totalApplicableDayRate": null,
            "totalApplicableDayRateWithMonthlySubscriptionFees": null,
            "totalApplicableNightRate": null,
            "totalApplicableNightRateWithMonthlySubscriptionFees": null,
            "loadZoneDayTimeConsumptionRate": null,
            "loadZoneNightTimeConsumptionRate": null,
            "loadZoneConsumptionRate": "6.95200",
            "serviceProviderStandingRateUnitType": "MONTHS_ON_SUPPLY_PER_DIEM",
            "serviceProviderConsumptionRateUnitType": "KWH_CONSUMPTION",
            "loadZoneDayTimeRateUnitType": null,
            "loadZoneNightTimeRateUnitType": null,
            "loadZoneConsumptionRateUnitType": "KWH_CONSUMPTION"
          }
        ]
      },
      {
        "id": "39",
        "fullName": "OctoGo 12M",
        "displayName": "OctoGo 12M",
        "description": "Prepaid 12 Month Fixed Rate with no exit fees.",
        "prepay": true,
        "rates": [
          {
            "totalApplicableRate": "11.19970",
            "totalApplicableRateWithMonthlySubscriptionFees": "12.19970",
            "kwhUsage": "1000",
            "serviceProvider": "CENTERPOINT",
            "serviceProviderConsumptionRate": "4.63970",
            "serviceProviderStandingRate": "439.00000",
            "loadZone": "LZ_HOUSTON",
            "totalApplicableDayRate": null,
            "totalApplicableDayRateWithMonthlySubscriptionFees": null,
            "totalApplicableNightRate": null,
            "totalApplicableNightRateWithMonthlySubscriptionFees": null,
            "loadZoneDayTimeConsumptionRate": null,
            "loadZoneNightTimeConsumptionRate": null,
            "loadZoneConsumptionRate": "6.12100",
            "serviceProviderStandingRateUnitType": "MONTHS_ON_SUPPLY_PER_DIEM",
            "serviceProviderConsumptionRateUnitType": "KWH_CONSUMPTION",
            "loadZoneDayTimeRateUnitType": null,
            "loadZoneNightTimeRateUnitType": null,
            "loadZoneConsumptionRateUnitType": "KWH_CONSUMPTION"
          }
        ]
      },
      {
        "id": "32",
        "fullName": "OctoGo 30",
        "displayName": "OctoGo 30",
        "description": "30 Day Fixed Rate",
        "prepay": true,
        "rates": [
          {
            "totalApplicableRate": "11.76950",
            "totalApplicableRateWithMonthlySubscriptionFees": "12.76950",
            "kwhUsage": "1000",
            "serviceProvider": "CENTERPOINT",
            "serviceProviderConsumptionRate": "4.63970",
            "serviceProviderStandingRate": "439.00000",
            "loadZone": "LZ_HOUSTON",
            "totalApplicableDayRate": null,
            "totalApplicableDayRateWithMonthlySubscriptionFees": null,
            "totalApplicableNightRate": null,
            "totalApplicableNightRateWithMonthlySubscriptionFees": null,
            "loadZoneDayTimeConsumptionRate": null,
            "loadZoneNightTimeConsumptionRate": null,
            "loadZoneConsumptionRate": "6.69080",
            "serviceProviderStandingRateUnitType": "MONTHS_ON_SUPPLY_PER_DIEM",
            "serviceProviderConsumptionRateUnitType": "KWH_CONSUMPTION",
            "loadZoneDayTimeRateUnitType": null,
            "loadZoneNightTimeRateUnitType": null,
            "loadZoneConsumptionRateUnitType": "KWH_CONSUMPTION"
          }
        ]
      },
      {
        "id": "33",
        "fullName": "OctoGo 90",
        "displayName": "OctoGo 90",
        "description": "90 Day Fixed Rate",
        "prepay": true,
        "rates": [
          {
            "totalApplicableRate": "12.03070",
            "totalApplicableRateWithMonthlySubscriptionFees": "13.03070",
            "kwhUsage": "1000",
            "serviceProvider": "CENTERPOINT",
            "serviceProviderConsumptionRate": "4.63970",
            "serviceProviderStandingRate": "439.00000",
            "loadZone": "LZ_HOUSTON",
            "totalApplicableDayRate": null,
            "totalApplicableDayRateWithMonthlySubscriptionFees": null,
            "totalApplicableNightRate": null,
            "totalApplicableNightRateWithMonthlySubscriptionFees": null,
            "loadZoneDayTimeConsumptionRate": null,
            "loadZoneNightTimeConsumptionRate": null,
            "loadZoneConsumptionRate": "6.95200",
            "serviceProviderStandingRateUnitType": "MONTHS_ON_SUPPLY_PER_DIEM",
            "serviceProviderConsumptionRateUnitType": "KWH_CONSUMPTION",
            "loadZoneDayTimeRateUnitType": null,
            "loadZoneNightTimeRateUnitType": null,
            "loadZoneConsumptionRateUnitType": "KWH_CONSUMPTION"
          }
        ]
      },
      {
        "id": "34",
        "fullName": "OctoGo MTM",
        "displayName": "OctoGo MTM",
        "description": "Month-to-month fixed rate",
        "prepay": true,
        "rates": [
          {
            "totalApplicableRate": "11.65270",
            "totalApplicableRateWithMonthlySubscriptionFees": "12.65270",
            "kwhUsage": "1000",
            "serviceProvider": "CENTERPOINT",
            "serviceProviderConsumptionRate": "4.63970",
            "serviceProviderStandingRate": "439.00000",
            "loadZone": "LZ_HOUSTON",
            "totalApplicableDayRate": null,
            "totalApplicableDayRateWithMonthlySubscriptionFees": null,
            "totalApplicableNightRate": null,
            "totalApplicableNightRateWithMonthlySubscriptionFees": null,
            "loadZoneDayTimeConsumptionRate": null,
            "loadZoneNightTimeConsumptionRate": null,
            "loadZoneConsumptionRate": "6.57400",
            "serviceProviderStandingRateUnitType": "MONTHS_ON_SUPPLY_PER_DIEM",
            "serviceProviderConsumptionRateUnitType": "KWH_CONSUMPTION",
            "loadZoneDayTimeRateUnitType": null,
            "loadZoneNightTimeRateUnitType": null,
            "loadZoneConsumptionRateUnitType": "KWH_CONSUMPTION"
          }
        ]
      },
      {
        "id": "36",
        "fullName": "OctoPlus 24M",
        "displayName": "OctoPlus 24M",
        "description": "24 Month Fixed Rate with no exit fees.",
        "prepay": false,
        "rates": [
          {
            "totalApplicableRate": "10.49970",
            "totalApplicableRateWithMonthlySubscriptionFees": "11.49970",
            "kwhUsage": "1000",
            "serviceProvider": "CENTERPOINT",
            "serviceProviderConsumptionRate": "4.63970",
            "serviceProviderStandingRate": "439.00000",
            "loadZone": "LZ_HOUSTON",
            "totalApplicableDayRate": null,
            "totalApplicableDayRateWithMonthlySubscriptionFees": null,
            "totalApplicableNightRate": null,
            "totalApplicableNightRateWithMonthlySubscriptionFees": null,
            "loadZoneDayTimeConsumptionRate": null,
            "loadZoneNightTimeConsumptionRate": null,
            "loadZoneConsumptionRate": "5.42100",
            "serviceProviderStandingRateUnitType": "MONTHS_ON_SUPPLY_PER_DIEM",
            "serviceProviderConsumptionRateUnitType": "KWH_CONSUMPTION",
            "loadZoneDayTimeRateUnitType": null,
            "loadZoneNightTimeRateUnitType": null,
            "loadZoneConsumptionRateUnitType": "KWH_CONSUMPTION"
          }
        ]
      },
      {
        "id": "37",
        "fullName": "OctoPlus 36M",
        "displayName": "OctoPlus 36M",
        "description": "36 Month Fixed Rate with no exit fees.",
        "prepay": false,
        "rates": [
          {
            "totalApplicableRate": "10.39970",
            "totalApplicableRateWithMonthlySubscriptionFees": "11.39970",
            "kwhUsage": "1000",
            "serviceProvider": "CENTERPOINT",
            "serviceProviderConsumptionRate": "4.63970",
            "serviceProviderStandingRate": "439.00000",
            "loadZone": "LZ_HOUSTON",
            "totalApplicableDayRate": null,
            "totalApplicableDayRateWithMonthlySubscriptionFees": null,
            "totalApplicableNightRate": null,
            "totalApplicableNightRateWithMonthlySubscriptionFees": null,
            "loadZoneDayTimeConsumptionRate": null,
            "loadZoneNightTimeConsumptionRate": null,
            "loadZoneConsumptionRate": "5.32100",
            "serviceProviderStandingRateUnitType": "MONTHS_ON_SUPPLY_PER_DIEM",
            "serviceProviderConsumptionRateUnitType": "KWH_CONSUMPTION",
            "loadZoneDayTimeRateUnitType": null,
            "loadZoneNightTimeRateUnitType": null,
            "loadZoneConsumptionRateUnitType": "KWH_CONSUMPTION"
          }
        ]
      },
      {
        "id": "38",
        "fullName": "OctoPlus 12M",
        "displayName": "OctoPlus 12M",
        "description": "12 Month Fixed Rate with no exit fees.",
        "prepay": false,
        "rates": [
          {
            "totalApplicableRate": "11.19970",
            "totalApplicableRateWithMonthlySubscriptionFees": "12.19970",
            "kwhUsage": "1000",
            "serviceProvider": "CENTERPOINT",
            "serviceProviderConsumptionRate": "4.63970",
            "serviceProviderStandingRate": "439.00000",
            "loadZone": "LZ_HOUSTON",
            "totalApplicableDayRate": null,
            "totalApplicableDayRateWithMonthlySubscriptionFees": null,
            "totalApplicableNightRate": null,
            "totalApplicableNightRateWithMonthlySubscriptionFees": null,
            "loadZoneDayTimeConsumptionRate": null,
            "loadZoneNightTimeConsumptionRate": null,
            "loadZoneConsumptionRate": "6.12100",
            "serviceProviderStandingRateUnitType": "MONTHS_ON_SUPPLY_PER_DIEM",
            "serviceProviderConsumptionRateUnitType": "KWH_CONSUMPTION",
            "loadZoneDayTimeRateUnitType": null,
            "loadZoneNightTimeRateUnitType": null,
            "loadZoneConsumptionRateUnitType": "KWH_CONSUMPTION"
          }
        ]
      },
      {
        "id": "22",
        "fullName": "OctoDrive 365 Day Fixed",
        "displayName": "OctoDrive 365 Day Fixed",
        "description": "12 month Time-of-Use fixed rate",
        "prepay": false,
        "rates": [
          {
            "totalApplicableRate": "0",
            "totalApplicableRateWithMonthlySubscriptionFees": "0",
            "kwhUsage": "1000",
            "serviceProvider": "CENTERPOINT",
            "serviceProviderConsumptionRate": "4.63970",
            "serviceProviderStandingRate": "439.00000",
            "loadZone": "LZ_HOUSTON",
            "totalApplicableDayRate": "9.92070",
            "totalApplicableDayRateWithMonthlySubscriptionFees": "10.92070",
            "totalApplicableNightRate": "9.53870",
            "totalApplicableNightRateWithMonthlySubscriptionFees": "10.53870",
            "loadZoneDayTimeConsumptionRate": "4.84200",
            "loadZoneNightTimeConsumptionRate": "4.46000",
            "loadZoneConsumptionRate": null,
            "serviceProviderStandingRateUnitType": "MONTHS_ON_SUPPLY_PER_DIEM",
            "serviceProviderConsumptionRateUnitType": "KWH_CONSUMPTION",
            "loadZoneDayTimeRateUnitType": "KWH_CONSUMPTION",
            "loadZoneNightTimeRateUnitType": "KWH_CONSUMPTION",
            "loadZoneConsumptionRateUnitType": null
          }
        ]
      },
      {
        "id": "40",
        "fullName": "Intelligent Octopus 12M",
        "displayName": "Intelligent Octopus 12M",
        "description": "This product is based on a 1 cent discount from Octoplus 12M. Customers are offered this discounted rate when adding a smart device (ECOBEE smart thermostat) to their Octopus energy app and allowing Octopus Energy to pause their central heating/ cooling system.",
        "prepay": false,
        "rates": [
          {
            "totalApplicableRate": "5.07870",
            "totalApplicableRateWithMonthlySubscriptionFees": "6.07870",
            "kwhUsage": "1000",
            "serviceProvider": "CENTERPOINT",
            "serviceProviderConsumptionRate": "4.63970",
            "serviceProviderStandingRate": "439.00000",
            "loadZone": "LZ_HOUSTON",
            "totalApplicableDayRate": null,
            "totalApplicableDayRateWithMonthlySubscriptionFees": null,
            "totalApplicableNightRate": null,
            "totalApplicableNightRateWithMonthlySubscriptionFees": null,
            "loadZoneDayTimeConsumptionRate": null,
            "loadZoneNightTimeConsumptionRate": null,
            "loadZoneConsumptionRate": "0.00000",
            "serviceProviderStandingRateUnitType": "MONTHS_ON_SUPPLY_PER_DIEM",
            "serviceProviderConsumptionRateUnitType": "KWH_CONSUMPTION",
            "loadZoneDayTimeRateUnitType": null,
            "loadZoneNightTimeRateUnitType": null,
            "loadZoneConsumptionRateUnitType": "KWH_CONSUMPTION"
          }
        ]
      }
    ]
  }
}

Using postcode

This is a two-step process:

  • Get the Service Provider or ESI ID using addressLookup endpoint 🔗.

    • Get products with rates using the ESI ID 🔗
    • Get products with rates using the service provider 🔗.
Back to top