Discover/BZAEK API
live

BZAEK APIbzaek.de

Access GOZ and GOÄ dental fee schedule data from BZAEK: billing codes, point values, fee factors, analog services, court rulings, and official statements.

This API takes change requests — .
Endpoint health
verified 5d ago
get_all_goz_codes
get_goz_sections
get_goz_code_detail
get_goz_sections_overview
get_goae_info
10/10 passing latest checkself-healing
Endpoints
10
Updated
28d ago

What is the BZAEK API?

The BZAEK GOZ API covers 10 endpoints for extracting German dental fee schedule data from the Bundeszahnärztekammer, including full GOZ code details with point values, euro fees at 1.0x, 2.3x, and 3.5x multipliers, analog service catalogs, court rulings, and official position statements. Endpoints like get_goz_code_detail return fields such as billing_provisions, often_billed_with, and commentary alongside the core fee breakdown, giving billing systems everything needed to validate and document dental charges.

Try it

No input parameters required.

api.parse.bot/scraper/67801aba-31fa-45b8-98de-f7ab8cc1a2fb/<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/67801aba-31fa-45b8-98de-f7ab8cc1a2fb/get_goz_sections' \
  -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 bzaek-de-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.

"""Walkthrough: BZAEK GOZ API — German dental fee schedule navigation."""
from parse_apis.bzaek_goz_api import Bzaek, SectionSlug, CodeNotFound

client = Bzaek()

# List all GOZ sections (A through L) — each section groups codes by specialty.
for section in client.sections.list(limit=5):
    print(section.letter, section.name)

# Construct a section by slug and list its codes.
implant_section = client.section(SectionSlug.IMPLANTOLOGISCHE_LEISTUNGEN)
for code_summary in implant_section.codes(limit=3):
    print(code_summary.code, code_summary.label)

# Drill into a specific code's full detail via the section sub-resource.
allgemein = client.section(SectionSlug.ALLGEMEINE_ZAHNAERZTLICHE_LEISTUNGEN)
detail = allgemein.code_details.get(code="0010")
print(detail.code, detail.points, detail.description)
for factor, amount in detail.fees.items():
    print(f"  {factor}: {amount}")

# Search for GOZ-related terms across the site.
result = client.searchresults.search(query="Implantat", limit=1).first()
if result:
    print(result.title, result.url)

# Typed error handling: catch CodeNotFound for invalid codes.
try:
    allgemein.code_details.get(code="9999")
except CodeNotFound as exc:
    print(f"Code not found: {exc}")

print("exercised: sections.list / section.codes / code_details.get / searchresults.search / CodeNotFound")
All endpoints · 10 totalmissing one? ·

Returns all GOZ sections (A through L) with their names, slugs, and URLs. Each section organizes the fee schedule by dental specialty area. Use the slug from results to drill into individual sections.

Input

No input parameters required.

Response
{
  "type": "object",
  "fields": {
    "sections": "array of section objects with letter, name, url, and slug"
  },
  "sample": {
    "data": {
      "sections": [
        {
          "url": "https://www.bzaek.de/goz/goz-kommentar/allgemeine-zahnaerztliche-leistungen.html",
          "name": "Allgemeine zahnaerztliche Leistungen",
          "slug": "allgemeine-zahnaerztliche-leistungen",
          "letter": "A"
        },
        {
          "url": "https://www.bzaek.de/goz/goz-kommentar/prophylaktische-leistungen.html",
          "name": "Prophylaktische Leistungen",
          "slug": "prophylaktische-leistungen",
          "letter": "B"
        }
      ]
    },
    "status": "success"
  }
}

About the BZAEK API

GOZ Code Data

The get_goz_sections endpoint returns all sections A through L of the GOZ fee schedule, each with a slug used as the required section_slug parameter in downstream calls. list_goz_codes_by_section then lists every 4-digit code in a given section — code number, display label, and detail URL. For full data on a single procedure, get_goz_code_detail requires both code and section_slug and returns description, points, a fees object mapping each factor label (1.0x, 2.3x, 3.5x) to a euro amount, billing_provisions, commentary, additional_effort, and the often_billed_with array of related codes. A pdf_link field is included when a PDF resource is available.

Bulk and Overview Retrieval

get_all_goz_codes iterates across all sections and returns code details in bulk; the optional limit integer parameter caps how many records are fetched, which is useful for testing or partial imports. get_goz_sections_overview returns a flat view of all sections and their codes with a total_codes integer, useful for building navigation or validating coverage without fetching individual detail pages.

Analog Codes, GOÄ, and Search

get_analog_codes returns the analog billing catalog organized by section — these entries cover procedures without a direct GOZ number and are returned as service description strings grouped under section names. get_goae_info returns the page title, explanatory content text, and an array of PDF download objects (label, url) covering GOÄ codes relevant to dental practice. The search_goz endpoint accepts a query string and returns matching results with title, url, and snippet fields from the BZAEK site.

Legal and Regulatory Data

get_urteiledatenbank returns the court rulings database, with each ruling carrying title, category, description, and url to the full text. get_stellungnahmen_zur_goz returns the BZAEK's official position statements on GOZ billing questions as an array of objects with title and url. Both endpoints require no input parameters and are suitable for building compliance reference tools or keeping a local rulings index up to date.

Reliability & maintenanceVerified

The BZAEK API is a managed, monitored endpoint for bzaek.de — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when bzaek.de 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 bzaek.de 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
5d ago
Latest check
10/10 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
  • Build a dental practice billing tool that validates procedure codes against point values and fee factors from get_goz_code_detail.
  • Generate a cross-reference table of codes commonly billed together using the often_billed_with field from code detail responses.
  • Populate a searchable GOZ code database using get_all_goz_codes with a limit for incremental imports.
  • Display analog billing service options grouped by section using get_analog_codes when no direct GOZ code applies.
  • Build a compliance dashboard that surfaces new court rulings and BZAEK position statements from get_urteiledatenbank and get_stellungnahmen_zur_goz.
  • Integrate GOÄ PDF resources into a dentist-facing reference app using the downloads array from get_goae_info.
  • Enable procedure search within a practice management system using the search_goz endpoint with a free-text query.
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 BZAEK offer an official developer API?+
BZAEK does not publish a public developer API. The GOZ and GOÄ fee schedule data is available through the BZAEK website at bzaek.de, but there is no documented API endpoint or developer program offered by the organization.
What does `get_goz_code_detail` return beyond the basic fee amounts?+
get_goz_code_detail returns a fees object with euro amounts at each billing factor (1.0x, 2.3x, 3.5x), the points value with unit, a description of the procedure, billing_provisions (the rules governing when the code can be billed), commentary from expert sources, additional_effort justifications, an often_billed_with array of related codes, and an optional pdf_link. Both code and section_slug are required inputs.
Does the API expose historical GOZ fee schedule versions or changelog data?+
Not currently. The API reflects the current GOZ fee schedule data as published on bzaek.de; it does not expose prior versions of the fee schedule or a history of code changes over time. You can fork this API on Parse and revise it to add an endpoint targeting any archived or versioned content the BZAEK site publishes.
Can I retrieve individual court rulings in full text through the rulings endpoint?+
get_urteiledatenbank returns each ruling's title, category, description summary, and a url pointing to the full text — but the full ruling text itself is not returned inline. The API covers index-level data; you can fork it on Parse and revise to add an endpoint that fetches and returns the full ruling content from each url.
Is there pagination support for the search or code listing endpoints?+
search_goz and list_goz_codes_by_section do not expose pagination parameters — results are returned as a single array per call. get_all_goz_codes accepts a limit integer to cap total records returned. You can fork this API on Parse and revise it to add offset or page parameters if your use case requires paginated access.
Page content last updated . Spec covers 10 endpoints from bzaek.de.
Related APIs in HealthcareSee all →
aapc.com API
Access comprehensive medical coding information including CPT, ICD-10-CM, ICD-10-PCS, and HCPCS codes with detailed hierarchies, sections, and code-specific details. Search across all medical coding systems to find the exact codes and their descriptions for billing, documentation, and compliance purposes.
arztsuche.116117.de API
Find therapists and doctors across Germany by postal code, radius, or medical specialty, getting detailed results with names, addresses, distances, and contact information. Quickly locate healthcare providers that match your needs using Germany's official 116117 doctor search portal.
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.
bundesanzeiger.de API
Search and retrieve official German business announcements, financial disclosures, and company filings from the Bundesanzeiger with full-text search and category filtering. Access detailed publication information and financial reports to monitor corporate announcements and regulatory filings.
bahn.com API
Search German train schedules and stations, find connections between destinations, and compare ticket prices across Deutsche Bahn routes. Get real-time station information and transit association details to plan your train journey efficiently.
zvg-portal.de API
Search and browse foreclosure auction listings across all German federal states via the official ZVG Portal. Retrieve paginated auction results, filter by state or court, and fetch full property details including valuations, auction dates, venue information, and document links.
evergabe-online.de API
Search and retrieve public tender opportunities from Germany's e-Vergabe platform by keywords, contract types, CPV codes, and publication dates. Access detailed tender information and discover the latest procurement opportunities across construction and other sectors.
zocdoc.com API
Search for doctors and medical practices on Zocdoc by specialty and location. Retrieve provider profiles, accepted insurance, office locations, patient reviews, and appointment availability.