Marketplace
No threads yet
Live

get_tax_credit_bands

belastingdienst.nl

Returns published algemene heffingskorting and arbeidskorting bands, amounts and formulas for multiple years from https://www.belastingdienst.nl.

Parameters2
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_credit_bands?

Returns published algemene heffingskorting and arbeidskorting bands, amounts and formulas for multiple years 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, credit and get the result back without maintaining a scraper.

Response

{
  "credit_years": [
    {
      "year": 0,
      "bands": [
        {
          "aow_status": "<string>",
          "income_basis": "<string>",
          "income_range": "<string>",
          "income_max_eur": 0,
          "income_min_eur": 0,
          "base_amount_eur": 0,
          "calculation_type": "<string>",
          "adjustment_operator": "<string>",
          "reference_income_eur": 0,
          "adjustment_rate_percent": 0,
          "credit_amount_or_formula": "<string>"
        }
      ],
      "credit": "<string>",
      "source_url": "<string>"
    }
  ],
  "requested_year": 0,
  "available_years": [
    0
  ],
  "requested_credit": "<string>",
  "available_credits": [
    "<string>"
  ],
  "aow_transition_note": "<string>"
}

Call it

curl --location 'https://us-prod.notte.cc/functions/e85430b6-7aa7-4292-91ea-a21241007806/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
    "function_id": "e85430b6-7aa7-4292-91ea-a21241007806",
    "variables": {
        "year": 0,
        "credit": "all"
    }
}'

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="e85430b6-7aa7-4292-91ea-a21241007806") — the "get_tax_credit_bands" function, which returns published algemene heffingskorting and arbeidskorting bands, amounts and formulas for multiple years from https://www.belastingdienst.nl..

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