Skip to main content
GET
/
power-tariffs
/
{country_code}
/
tariff-uid
/
{tariff_uid}
Get by ID
curl --request GET \
  --url https://api.engrate.io/v1/power-tariffs/{country_code}/tariff-uid/{tariff_uid} \
  --header 'Authorization: <api-key>'
{
  "powerTariff": {
    "uid": "<string>",
    "name": "<string>",
    "reviewDetails": {
      "status": "not_applicable",
      "updatedAt": "2023-11-07T05:31:56Z",
      "reviewedAt": "2025-10-08T10:54:26+00:00"
    },
    "timeScope": {
      "timezone": "<string>",
      "validFrom": "2025-01-01T00:00:00+01:00",
      "validTo": "2026-01-01T00:00:00+01:00"
    },
    "meteringGridAreas": [
      "<string>"
    ],
    "meteringPointCharacteristics": {
      "subscriptionType": "fuse_based",
      "buildingType": "apartment",
      "customerType": "business",
      "currentLevel": {
        "minimum": 10,
        "maximum": 10,
        "unit": "A"
      },
      "voltageLevel": {
        "minimum": 0.4,
        "maximum": 0.4,
        "unit": "kV"
      },
      "powerLevel": {
        "minimum": 1,
        "maximum": 1,
        "unit": "kW"
      },
      "annotations": "Only for houses with an even house number."
    },
    "components": [
      {
        "data": {
          "periods": [
            {
              "months": [
                "jan"
              ],
              "daysOfWeek": [
                "mon"
              ],
              "holidays": true,
              "timesOfDay": [
                {
                  "fromTime": "<string>",
                  "toTime": "<string>"
                }
              ],
              "inverse": true
            }
          ],
          "calculationMethod": {
            "timeWeights": [
              {
                "timesOfDay": [
                  {
                    "fromTime": "<string>",
                    "toTime": "<string>"
                  }
                ],
                "weight": 123
              }
            ],
            "peaksCalculatedAs": {
              "highestValues": 123,
              "resolution": "hourly",
              "peaksCalculatedAs": "<unknown>"
            },
            "bounds": [
              {
                "side": "minimum",
                "value": {
                  "value": 123,
                  "unit": "kW"
                },
                "type": "fixed"
              }
            ]
          },
          "priceLevels": [
            {
              "price": {
                "currency": "SEK",
                "exclVat": 123
              },
              "bounds": [
                {
                  "side": "minimum",
                  "value": {
                    "value": 123,
                    "unit": "kW"
                  },
                  "type": "fixed"
                }
              ]
            }
          ],
          "priceTierSystem": "stacked",
          "annotations": "<string>"
        },
        "type": "peak_power_fee"
      }
    ],
    "annotations": "Default tariff, time-differentiated alternative exists."
  }
}

Authorizations

Authorization
string
header
required

Path Parameters

country_code
string
required

ISO 3166-1 alpha-2 country code.

Example:

"SE"

tariff_uid
string<uuid>
required

UUID of the power tariff to retrieve.

Example:

"123e4567-e89b-12d3-a456-426614174000"

Response

Successful Response

powerTariff
PowerTariff · object
required

The requested power tariff.