Discover/116117 API
live

116117 APIpatientennavi.116117.de

Search the official 116117 German doctor directory by zip code, city, or state. Returns practitioner name, specialty, address, coordinates, and contact details.

This API takes change requests — .
Endpoint health
verified 2h ago
search_doctors
search_doctors_by_state
2/2 passing latest checkself-healing
Endpoints
2
Updated
2h ago

What is the 116117 API?

The 116117 Patientennavi API provides access to Germany's official Arzt- und Psychotherapeutensuche directory through 2 endpoints, returning up to 120 practitioners per query with fields including name, specialties, address, phone, and GPS coordinates. The search_doctors endpoint resolves any German zip code or city name to a geographic area and returns nearby doctors sorted by distance, while search_doctors_by_state aggregates deduplicated results across an entire Bundesland.

This call costs3 credits / call— charged only on success
Try it
German zip code (e.g. '10115', '80331') or city name (e.g. 'Berlin', 'Hamburg', 'München'). The value is resolved to a geographic search area via the site's location API.
api.parse.bot/scraper/af1561e8-0a2c-429b-b3e5-bda48c4020c9/<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 POST 'https://api.parse.bot/scraper/af1561e8-0a2c-429b-b3e5-bda48c4020c9/search_doctors' \
  -H 'X-API-Key: $PARSE_API_KEY' \
  -H 'Content-Type: application/json' \
  -d '{
  "location": "Berlin"
}'
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 patientennavi-116117-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: 116117 Arztsuche — find doctors near a German city or across a state."""
from parse_apis.patientennavi_116117_de_api import Patientennavi, State, InputNotFound

client = Patientennavi()

# Search for practitioners near Hamburg, cap total results to 10.
try:
    for doctor in client.doctors.search(location="Hamburg", limit=10):
        addr = doctor.address
        print(f"{doctor.name} — {', '.join(doctor.specialties)} — {addr.street}, {addr.zip_code} {addr.city} ({doctor.distance_meters}m)")
except InputNotFound:
    print("Location could not be resolved — check spelling.")

# Drill into the closest result for detail.
closest = client.doctors.search(location="Berlin", limit=1).first()
if closest is not None:
    print(f"\nClosest in Berlin: {closest.salutation} {closest.first_name} {closest.last_name}")
    print(f"  Phone: {closest.phone}")
    if closest.languages:
        print(f"  Languages: {', '.join(closest.languages)}")
    if closest.accessibility:
        print(f"  Accessibility: {', '.join(closest.accessibility)}")

# Search an entire state using the State enum.
for doctor in client.doctors.search_by_state(state=State.BREMEN, limit=5):
    print(f"{doctor.name} — {doctor.address.city} — {doctor.status}")

print("\nexercised: doctors.search / doctors.search_by_state")
All endpoints · 2 totalmissing one? ·

Search for doctors and psychotherapists near a given German location. Accepts a German zip code or city name, resolves it to a geographic area, and returns up to 120 practitioners sorted by distance. Each result includes name, specialties, address, contact details, coordinates, spoken languages, accessibility information, and distance in meters. When more than 120 results exist the response indicates more_results_available=true; the API does not expose server-side pagination beyond this initial batch.

Input
ParamTypeDescription
locationrequiredstringGerman zip code (e.g. '10115', '80331') or city name (e.g. 'Berlin', 'Hamburg', 'München'). The value is resolved to a geographic search area via the site's location API.
Response
{
  "type": "object",
  "fields": {
    "doctors": "Array of doctor/practitioner records with full details",
    "location": "Resolved location label used for the search",
    "total_found": "Number of doctors returned in this response (max 120)",
    "more_results_available": "Whether additional results exist beyond the returned batch"
  }
}

About the 116117 API

Endpoint Overview

The API exposes two POST endpoints. search_doctors accepts a single location parameter — either a German postal code such as 10115 or a city name such as München — and returns an array of doctors records, a resolved location label, a total_found count (capped at 120), and a more_results_available boolean indicating whether additional results exist beyond the returned batch.

search_doctors_by_state accepts a state parameter (the full German Bundesland name, e.g. Bayern or Nordrhein-Westfalen). It queries multiple representative cities within that state, deduplicates practitioners by name and address, and returns a combined doctors array alongside queried_locations (the resolved city labels actually searched) and total_unique_doctors.

Response Fields

Each doctor record in the doctors array contains the practitioner's full name, one or more specialty designations, street address, postal code, city, phone and/or fax numbers, and geographic coordinates (latitude/longitude). These fields are consistent across both endpoints, so downstream code can process results from either endpoint with the same schema.

Coverage and Limitations

Coverage is limited to practitioners listed in the 116117 directory, which is maintained by the Kassenärztliche Bundesvereinigung (KBV) and covers statutory health insurance (GKV) physicians and psychotherapists. Private-only practitioners not registered with the KBV may not appear. The search_doctors endpoint returns at most 120 results per query; if more_results_available is true, results beyond that batch are not directly paginated through this endpoint.

Reliability & maintenanceVerified

The 116117 API is a managed, monitored endpoint for patientennavi.116117.de — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when patientennavi.116117.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 patientennavi.116117.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
2h ago
Latest check
2/2 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 GP or specialist finder for a German patient-facing app using zip code proximity results
  • Aggregate psychotherapist availability across a Bundesland using search_doctors_by_state for capacity planning
  • Geocode practitioner locations from the coordinates field to render doctor maps for a given city
  • Extract specialty distribution data across German states for healthcare market research
  • Cross-reference 116117 directory listings with appointment booking platforms to identify gaps in coverage
  • Populate a CRM with verified contact details (phone, address) for medical professionals in a target region
Pricing & limitsSee full pricing →
TierPriceCredits/monthRate limit
Free$0/mo2005 req/min
Hobby$30/mo1,00020 req/min
Developer$100/mo5,000100 req/min
Team$300/mo20,000300 req/min
Company$1,000/mo100,000500 req/min

Each endpoint has a fixed posted price per successful call — most fall between 1 and 10 credits — shown on this API's page before you run it. Exceeding the rate limit returns a 429 response. Authenticate with the X-API-Key header.

Frequently asked questions
Does 116117 Patientennavi have an official developer API?+
No. The 116117 Arzt- und Psychotherapeutensuche at patientennavi.116117.de is a public-facing web directory operated by the Kassenärztliche Bundesvereinigung. It does not publish a documented developer API or offer API keys to third parties.
What does search_doctors_by_state return and how does deduplication work?+
The endpoint queries multiple representative cities within the specified German state and merges the results. Practitioners are deduplicated by a combination of name and address, so a doctor appearing in results for both Frankfurt and Offenbach, for example, is only included once. The response includes the queried_locations array so you can see exactly which city queries contributed to the output, and total_unique_doctors gives the final deduplicated count.
Is there a way to retrieve more than 120 results for a single location query?+
The search_doctors endpoint returns at most 120 practitioners per call and sets more_results_available to true when additional results exist, but no pagination parameter is exposed to fetch subsequent pages. For broader coverage of a densely populated area, using search_doctors_by_state or querying multiple adjacent zip codes and deduplicating client-side are the practical alternatives. You can also fork this API on Parse and revise it to add a pagination or offset parameter if your use case requires deeper result sets.
Does the API include appointment availability or wait times?+
No. The response fields cover practitioner identity (name, specialties), location (address, coordinates), and contact details (phone, fax). Appointment slot availability and wait-time data are not part of the 116117 directory data returned. You can fork this API on Parse and revise it to add an endpoint that queries a source exposing availability information.
Are private (Privatarzt) practitioners who are not in the GKV system included?+
The 116117 directory is maintained by the Kassenärztliche Bundesvereinigung and primarily covers physicians and psychotherapists approved for statutory health insurance (GKV) treatment. Private-only practitioners without a KBV contract may not appear in the results. The API reflects the directory as-is and does not supplement it with data from other sources.
Page content last updated . Spec covers 2 endpoints from patientennavi.116117.de.
Related APIs in HealthcareSee all →
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.
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.
medicalcouncil.org.nz API
Search for registered doctors in New Zealand by name, location, specialty, and professional status, then access their detailed profiles including qualifications and scope of practice. Use this to verify practitioner credentials and find healthcare professionals that match your needs.
11880.com API
Search and discover millions of German businesses from 11880.com's comprehensive directory, instantly accessing company contact details, locations, and trade information. Get intelligent autocomplete suggestions for trades and cities to refine your business searches and find exactly who you're looking for.
doctoralia.com.br API
Find healthcare specialists in Brazil with their profiles, contact details, Instagram handles, pricing, and patient reviews all in one place. Search and discover doctors by specialty with autocomplete suggestions to quickly locate the right professional for your needs.
goodtherapy.org API
Search and find therapists on GoodTherapy.org by location, name, or specialty, then view detailed profiles including credentials and practice information. Browse available therapists across different locations and filter results by specialty, insurance, language, and more to find the right mental health professional.
npidb.org API
Search for healthcare providers and organizations by name to instantly retrieve their credentials, contact information, and specialty taxonomy codes from the National Provider Identifier database. Look up detailed provider profiles to verify qualifications and find the right medical professionals for your needs.
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.