Discover/Menzis API
live

Menzis APImenzis.nl

Retrieve Menzis insurance reimbursements, plan details, and policy documents via 5 structured endpoints. Search vergoedingen, list plans, and fetch coverage details.

Endpoint health
verified 3d ago
get_verzekeringsvoorwaarden
list_vergoedingen
search_vergoedingen
get_vergoeding_detail
list_insurance_plans
5/5 passing latest checkself-healing
Endpoints
5
Updated
26d ago

What is the Menzis API?

The Menzis.nl API exposes 5 endpoints for accessing Dutch health insurance data from menzis.nl, covering reimbursements (vergoedingen), insurance plans, and policy documents. Use get_vergoeding_detail to retrieve per-plan coverage objects, FAQ entries, and linked documents for any reimbursement page, or use search_vergoedingen to find relevant reimbursement pages by keyword before drilling into the detail.

Try it
Single lowercase alphabetical letter to filter reimbursements (a-z).
api.parse.bot/scraper/e895d1c6-56ac-49a3-8fe3-3f34bafc1b6a/<endpoint>
Ready to send
Fill in the parameters and hit sign in to send to see live response data here.
Call it over HTTPgrab a free API key at signup
curl -X GET 'https://api.parse.bot/scraper/e895d1c6-56ac-49a3-8fe3-3f34bafc1b6a/list_vergoedingen?letter=a' \
  -H 'X-API-Key: $PARSE_API_KEY'
Python SDK · recommended

Typed, relational, agent-ready

A generated client with real types, enums, and the links between objects — the structure a flat JSON response can't carry. Autocompletes in your editor and reads cleanly to coding agents.

  • Fully typed · autocompletes
  • Objects link to objects
  • Typed errors & pagination

Typed Python client. Set up the SDK in your uv project, then pull this API’s typed client:

uv add parse-sdk
uv run parse init
uv run parse add --marketplace menzis-nl-api

uv run parse add --marketplace pulls a pinned snapshot of this canonical API — it won’t change underneath you. To customize it, subscribe and swap to your own copy.

from parse_apis.menzis_reimbursements_and_plans_api import Menzis, Reimbursement, ReimbursementDetail, SearchResult, InsurancePlan, ConditionsPage, Letter

menzis = Menzis()

# List reimbursements for a specific letter using the Letter enum
for reimbursement in menzis.reimbursements.list_by_letter(letter=Letter.A):
    print(reimbursement.name, reimbursement.slug)

# Search for reimbursements by keyword
for result in menzis.reimbursements.search(query="fysiotherapie"):
    print(result.title, result.description, result.url)

# Get detailed coverage for a specific reimbursement by slug
detail = menzis.reimbursement("acnebehandeling").detail()
print(detail.title, detail.url, detail.description)
for plan_name, coverage in detail.coverage.items():
    print(plan_name, coverage.info)
for faq in detail.faq:
    print(faq.question, faq.answer)

# List all insurance plans
for plan in menzis.insuranceplans.list():
    print(plan.name, plan.type, plan.monthly_premium)

# List policy conditions pages
for page in menzis.conditionspages.list():
    print(page.title, page.url)
All endpoints · 5 totalmissing one? ·

List all reimbursements for a specific letter (a-z) from the A-Z index on Menzis.nl. Returns reimbursement names, URLs, and slugs for the given letter. Pages are organized alphabetically; each letter returns all matching items in a single response without further pagination.

Input
ParamTypeDescription
letterstringSingle lowercase alphabetical letter to filter reimbursements (a-z).
Response
{
  "type": "object",
  "fields": {
    "letter": "string — the letter that was queried",
    "reimbursements": "array of objects with keys: name (string), url (string), slug (string)"
  },
  "sample": {
    "data": {
      "letter": "a",
      "reimbursements": [
        {
          "url": "https://www.menzis.nl/zorg-en-vergoedingen/a/acnebehandeling",
          "name": "Acnebehandeling",
          "slug": "acnebehandeling"
        },
        {
          "url": "https://www.menzis.nl/zorg-en-vergoedingen/a/algemene-check-up",
          "name": "Algemene check-up",
          "slug": "algemene-check-up"
        },
        {
          "url": "https://www.menzis.nl/zorg-en-vergoedingen/a/allergeenvrije-schoenen",
          "name": "Allergeenvrije schoenen",
          "slug": "allergeenvrije-schoenen"
        }
      ]
    },
    "status": "success"
  }
}

About the Menzis API

Reimbursement Data

list_vergoedingen accepts a single lowercase letter parameter (a–z) and returns all reimbursement entries indexed under that letter, each with a name, url, and slug. These slugs feed directly into get_vergoeding_detail, which accepts either a full url or a letter + slug combination. The detail response includes a title, description, a coverage object whose keys are plan or coverage-tier names and whose values contain descriptive info text, an faq array of question/answer pairs, and a documents array with linked titles and URLs.

Search and Plan Listing

search_vergoedingen takes a query string — for example 'fysiotherapie' or 'tandarts' — and returns matching results with title, description, and url fields. This is useful for locating reimbursement pages without browsing the A–Z index. list_insurance_plans requires no inputs and returns all Menzis basis and aanvullend (supplemental) plans with their name, type, monthly_premium, and url.

Policy Documents

get_verzekeringsvoorwaarden returns a flat list of policy-conditions pages organized by year, each with a title and url. This covers the formal verzekeringsvoorwaarden (insurance terms) documents published by Menzis, useful for compliance checks or archival comparisons across policy years.

Reliability & maintenanceVerified

The Menzis API is a managed, monitored endpoint for menzis.nl — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when menzis.nl changes and a check fails, the API is automatically queued for repair and re-verified. It is built to keep working as the site underneath it changes.

This isn't an official menzis.nl API — it's an independent, maintained REST wrapper over public data. Where the source has no official API (or only a limited one), Parse gives you a stable contract over a source that never promised one, and keeps it current. Need a new endpoint or field? You can revise it yourself in plain English and the agent rebuilds it against the live site in minutes — contributing the change back to the shared API is free.

Last verified
3d ago
Latest check
5/5 endpoints passing
Maintenance
Monitored & self-healing
Will this API break when the source site changes?+
It's built not to. Every endpoint is health-checked on a schedule with automated test probes. When the source site changes and a check fails, the API is automatically queued for repair and re-verified — that's the self-healing layer. Each API page shows when its endpoints were last verified. And because marketplace APIs are shared, any fix reaches everyone using it.
Is this an official API from the source site?+
No — Parse APIs are independent, managed REST wrappers over publicly available data. That is the point: where a site has no official API (or only a limited one), Parse gives you a maintained, monitored endpoint for that data and keeps it working as the site changes — so you get a stable contract over a source that never promised one.
Can I fix or extend this API myself if I need a new endpoint or field?+
Yes — and you don't have to wait on us. This API was generated by the Parse agent, which stays attached. Describe the change in plain English ("add an endpoint that returns reviews", "fix the price field") in the revise box on the API page or via the revise_api MCP tool, and the agent rebuilds it against the live site in minutes. Contributing the change back to the public API is free.
What happens if I call an endpoint that has an issue?+
Errors are machine-readable: a bad call returns a clean status with the list of available endpoints and a repair hint, so an agent (or you) can recover or trigger a fix instead of failing silently. Confirmed failures feed the automatic repair queue.
Common use cases
  • Map which Menzis plan tiers cover physiotherapy by comparing the coverage object keys from get_vergoeding_detail for the fysiotherapie slug.
  • Build a Dutch health insurance comparison tool that surfaces reimbursement coverage differences across basis and aanvullend plans.
  • Automate annual tracking of policy-document changes by diffing get_verzekeringsvoorwaarden results across years.
  • Populate a benefits-search UI using search_vergoedingen with user-entered keywords like 'tandarts' or 'brillen'.
  • Extract FAQ content from reimbursement detail pages to feed a healthcare chatbot with up-to-date Menzis coverage Q&A.
  • Aggregate monthly_premium values from list_insurance_plans to monitor pricing trends across Menzis plan types.
  • Enumerate every reimbursement in the A–Z index by iterating list_vergoedingen from a to z.
Pricing & limitsSee full pricing →
TierPriceCredits/monthRate limit
Free$0/mo1005 req/min
Hobby$30/mo1,00020 req/min
Developer$100/mo5,000100 req/min

One credit = one API call regardless of which marketplace API you call. Exceeding the rate limit returns a 429 response. Authenticate with the X-API-Key header.

Frequently asked questions
Does Menzis have an official developer API?+
Menzis does not publish a public developer API or documented data access program. This Parse API provides structured access to the same coverage and plan data available on menzis.nl.
What does `get_vergoeding_detail` return and how do I identify the right page?+
The endpoint returns a title, description, a coverage object (keys are plan names, values contain an info text), an faq array, and a documents array. You can identify the target page either by supplying a full url or by combining a letter (e.g. 'f') with a slug (e.g. 'fysiotherapie-vanaf-18-jaar-b'). If url is provided, the other two parameters are ignored.
Does the API return numeric reimbursement amounts (euro values) for each plan?+
Not as discrete numeric fields. Coverage details are returned as free-text info strings inside the coverage object, which may contain amounts described in prose. The API covers plan-level coverage descriptions, FAQ entries, and linked documents. You can fork this API on Parse and revise it to add structured amount extraction if the source pages carry parseable figures.
Are reimbursements for all Menzis labels (e.g. Anderzorg, IntwineHealth) included?+
The API indexes reimbursement and plan data from menzis.nl specifically. Sister brands hosted on separate domains are not currently covered. You can fork this API on Parse and revise it to point at those domains if you need data from Menzis group labels.
Does `list_vergoedingen` paginate, and what happens if no letter is supplied?+
The endpoint is designed around the A–Z index structure on menzis.nl. The letter parameter is optional; omitting it may return a default or full listing depending on how the source page behaves, but for reliable results it is best to pass an explicit letter from a to z.
Page content last updated . Spec covers 5 endpoints from menzis.nl.
Related APIs in HealthcareSee all →
policyme.com API
Access term life, critical illness, and health & dental insurance plan details from PolicyMe, including coverage options, real-time premium quotes, sample rate tables, and customer reviews.
1mg.com API
Access data from 1mg.com.
bzaek.de API
Access comprehensive German dental and medical fee schedules (GOZ and GOÄ) with detailed billing codes, pricing information, analog codes, and legal rulings to streamline your practice billing and coding decisions. Search specific procedures, browse organized sections, and review professional statements to ensure accurate fee assessment and compliance.
mintel.com API
Browse and search Mintel's market research catalog. Retrieve free intelligence downloads, landing page content, store report listings by keyword or industry, full report details including pricing and table of contents, and the complete industry taxonomy from the Mintel Store.
aponeo.de API
Search for medications and health products from Aponeo.de, view detailed pricing and availability, browse by category, and discover current deals and promotions. Find specific products by PZN code, check bestsellers, or explore newly added items to compare prices and stock status.
docmorris.de API
Search and browse products from DocMorris.de to compare pricing, read customer reviews, and find current discounts. Look up specific products by name or pharmaceutical number (PZN) to retrieve detailed information, real-time pricing, and availability data.
huislijn.nl API
Search and browse housing listings on huislijn.nl to find properties for sale, rental, or vacation stays, and view detailed information about specific homes. Get access to the newest listings posted on the platform to stay updated on available properties.
ah.nl API
Search Albert Heijn products, browse categories, view weekly bonus offers, and fetch detailed product information including nutrition and supplier contact details.