> ## Documentation Index
> Fetch the complete documentation index at: https://developer.plugchoice.com/llms.txt
> Use this file to discover all available pages before exploring further.

# List Tariffs

Returns a list of energy tariffs for a specific location. Only tariffs from today onwards are returned.

<ParamField query="location" type="string" required>
  The location identifier to retrieve tariffs for.
</ParamField>

## Response

<ResponseField name="data" type="array">
  Array of tariff objects.

  <Expandable title="tariff">
    <ResponseField name="type" type="string">
      The tariff type.
    </ResponseField>

    <ResponseField name="location" type="string">
      The location identifier.
    </ResponseField>

    <ResponseField name="timestamp" type="string">
      ISO 8601 timestamp of when the tariff rate applies.
    </ResponseField>

    <ResponseField name="price" type="integer">
      The energy price, expressed as an integer in minor currency units.
    </ResponseField>

    <ResponseField name="price_includes_tax" type="boolean">
      Whether the price includes tax.
    </ResponseField>
  </Expandable>
</ResponseField>
