Marketplace
No threads yet
Live

get_tax_rates

belastingdienst.nl

Returns Box 2 brackets and Box 3 rates for every published year from https://www.belastingdienst.nl, with optional year filtering.

Parameters1
Runs3
Updated2h ago
Operational3 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_tax_rates?

Returns Box 2 brackets and Box 3 rates for every published year from https://www.belastingdienst.nl, with optional year filtering. 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

{
  "box_2_rates": [
    {
      "year": 0,
      "bracket": 0,
      "rate_percent": 0,
      "income_max_eur": 0,
      "income_min_eur": 0,
      "taxable_income": "<string>"
    }
  ],
  "box_3_rates": [
    {
      "year": 0,
      "rate_percent": 0
    }
  ],
  "requested_year": 0,
  "available_years": [
    0
  ],
  "box_2_source_url": "<string>",
  "box_3_source_url": "<string>"
}

Call it

curl --location 'https://us-prod.notte.cc/functions/0fce6804-4e71-48f4-9b2e-1bc18959615b/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
    "function_id": "0fce6804-4e71-48f4-9b2e-1bc18959615b",
    "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="0fce6804-4e71-48f4-9b2e-1bc18959615b") — the "get_tax_rates" function, which returns Box 2 brackets and Box 3 rates for every published year from https://www.belastingdienst.nl, with optional year filtering..

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