Marketplace
No threads yet
Live

get_energy_tax_rates

belastingdienst.nl

Returns Dutch energy tax rates by year and consumption tier, including gas, electricity, reduced rates and ODE surcharges, from https://www.belastingdienst.nl.

Parameters1
Runs4
Updated2h ago
Operational4 runs · 100% succeeded
30 days agotoday

Playground

Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.

What is get_energy_tax_rates?

Returns Dutch energy tax rates by year and consumption tier, including gas, electricity, reduced rates and ODE surcharges, from https://www.belastingdienst.nl. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass year and get the result back without maintaining a scraper.

Response

{
  "tables": [
    {
      "name": "<string>",
      "unit": "<string>",
      "years": [
        {
          "year": 0,
          "rates": [
            {
              "tier": "<string>",
              "rate_eur": 0,
              "rate_display": "<string>"
            }
          ],
          "year_label": "<string>"
        }
      ],
      "rate_kind": "<string>",
      "reduced_rate": true,
      "ode_surcharge": true,
      "energy_carrier": "<string>"
    }
  ],
  "rate_count": 0,
  "source_url": "<string>",
  "table_count": 0,
  "year_filter": 0
}

Call it

curl --location 'https://us-prod.notte.cc/functions/478d2369-ca09-4148-af6a-f5c819ac57af/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
    "function_id": "478d2369-ca09-4148-af6a-f5c819ac57af",
    "variables": {
        "year": 0
    }
}'

Ask an agent

Paste this into Claude Code, Cursor or any MCP client to have an agent call this function for you.

prompt
Use the Anything API MCP server (https://anything.notte.cc/mcp).

Call run(function_id="478d2369-ca09-4148-af6a-f5c819ac57af") — the "get_energy_tax_rates" function, which returns Dutch energy tax rates by year and consumption tier, including gas, electricity, reduced rates and ODE surcharges, from https://www.belastingdienst.nl..

It takes year (int). Return the result as structured JSON.