Marketplace
No threads yet
Live

get_payroll_tax_information

belastingdienst.nl

Returns WKR free-space percentages, tax-free travel allowance per km, and 30% ruling salary thresholds from https://www.belastingdienst.nl.

Parameters0
Runs3
Updated1h 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_payroll_tax_information?

Returns WKR free-space percentages, tax-free travel allowance per km, and 30% ruling salary thresholds 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 — call it with no parameters and get the result back without maintaining a scraper.

Response

{
  "wkr_free_space": [
    {
      "year": 0,
      "source_url": "<string>",
      "fiscal_wage_limit_eur": 0,
      "free_space_above_limit_percent": 0,
      "free_space_up_to_limit_percent": 0
    }
  ],
  "travel_allowance": {
    "source_url": "<string>",
    "current_year": 0,
    "previous_year": 0,
    "effective_month": "<string>",
    "increase_eur_per_km": 0,
    "tax_free_eur_per_km": 0,
    "retroactive_payment_allowed": true,
    "previous_tax_free_eur_per_km": 0
  },
  "thirty_percent_ruling": {
    "year": 0,
    "source_url": "<string>",
    "under_30_qualification": "<string>",
    "under_30_age_limit_years": 0,
    "no_income_threshold_exception": "<string>",
    "salary_basis_excludes_targeted_exemption": true,
    "general_taxable_annual_salary_must_exceed_eur": 0,
    "under_30_masters_taxable_annual_salary_must_exceed_eur": 0
  },
  "wkr_excess_final_levy_percent": 0
}

Call it

curl --location 'https://us-prod.notte.cc/functions/8f014897-63aa-4d78-b45c-a88d2b37c824/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
    "function_id": "8f014897-63aa-4d78-b45c-a88d2b37c824",
    "variables": {}
}'

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="8f014897-63aa-4d78-b45c-a88d2b37c824") — the "get_payroll_tax_information" function, which returns WKR free-space percentages, tax-free travel allowance per km, and 30% ruling salary thresholds from https://www.belastingdienst.nl..

It takes no parameters. Return the result as structured JSON.