Live
get_aow_tax_information
belastingdienst.nlReturns Dutch AOW eligibility age, premium rates, retiree Box 1 brackets, and monthly transition-year rates from https://www.belastingdienst.nl.
Parameters1
Runs3
Updated2h ago
Operational3 runs · 100% succeeded
30 days ago90 days agoranfailednot checkedtoday
Playground
Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.
What is get_aow_tax_information?
Returns Dutch AOW eligibility age, premium rates, retiree Box 1 brackets, and monthly transition-year rates 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
{
"year": 0,
"source_pages": [
{
"url": "<string>",
"title": "<string>",
"last_modified": "<string>"
}
],
"aow_premium_rule": "<string>",
"eligibility_age_text": "<string>",
"eligibility_age_years": 0,
"monthly_transition_rates": [
{
"month": "<string>",
"month_number": 0,
"first_band_rate_percent": 0
}
],
"standard_brackets_before_aow": [
{
"band": 0,
"income_range": "<string>",
"rate_percent": 0
}
],
"social_insurance_premium_rates": {
"anw_rate_percent": 0,
"aow_rate_percent": 0,
"wlz_rate_percent": 0,
"total_rate_percent": 0,
"maximum_total_premium_eur": 0,
"maximum_premium_income_eur": 0,
"aow_rate_after_reaching_aow_age_percent": 0
},
"transition_year_other_brackets": [
{
"band": 0,
"income_range": "<string>",
"rate_percent": 0
}
],
"premium_free_retiree_bracket_groups": [
{
"brackets": [
{
"band": 0,
"income_range": "<string>",
"rate_percent": 0
}
],
"category": "<string>"
}
],
"transition_first_band_income_limit_eur": 0
}Call it
curl --location 'https://us-prod.notte.cc/functions/883886a3-93cc-48b9-a18d-5e42fdb01f5a/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "883886a3-93cc-48b9-a18d-5e42fdb01f5a",
"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="883886a3-93cc-48b9-a18d-5e42fdb01f5a") — the "get_aow_tax_information" function, which returns Dutch AOW eligibility age, premium rates, retiree Box 1 brackets, and monthly transition-year rates from https://www.belastingdienst.nl.. It takes year (int). Return the result as structured JSON.