Discover/arztsuche.116117.de API
live

arztsuche.116117.de APIarztsuche.116117.de

Search for doctors and therapists across Germany by postal code, radius, and specialty via the official 116117 Arztsuche portal. Returns names, addresses, phone numbers, and coordinates.

Endpoints
4
Updated
14d ago
Try it
German postal code (PLZ) to search around, e.g. '10115'
Search radius in kilometers for client-side filtering. API always returns 50 closest resul
Medical specialty filter. Accepted values: 'psychotherapie', 'hausarzt', 'augenarzt', 'chi
api.parse.bot/scraper/b8617ed0-dd0b-40a8-ad6e-998c54364d58/<endpoint>
Ready to send
Fill in the parameters and hit sign in to send to see live response data here.
Use it in your codegrab a free API key at signup
curl -X GET 'https://api.parse.bot/scraper/b8617ed0-dd0b-40a8-ad6e-998c54364d58/search_therapists?plz=10115' \
  -H 'X-API-Key: $PARSE_API_KEY'
All endpoints · 4 totalclick to expand

Search for doctors and medical specialists by postal code. Returns up to 50 closest results sorted by distance. Fast single-query search suitable for most use cases.

Input
ParamTypeDescription
plzrequiredstringGerman postal code (PLZ) to search around, e.g. '10115'
radius_kmintegerSearch radius in kilometers for client-side filtering. API always returns 50 closest results; radius filters those by distance.
specialtystringMedical specialty filter. Accepted values: 'psychotherapie', 'hausarzt', 'augenarzt', 'chirurgie', 'frauenheilkunde', 'hno', 'hautarzt', 'kinderarzt', 'orthopaedie', 'urologie', 'innere_medizin', 'neurologie_psychiatrie', 'kinder_jugendpsychiatrie', 'all'. Can also pass a numeric code from search_specialty.
Response
{
  "type": "object",
  "fields": {
    "plz": "string - postal code searched",
    "radius_km": "integer - radius filter applied",
    "specialty": "string - specialty filter used",
    "therapists": "array of therapist objects with name, address, distance_km, phone, specialty, lat, lon",
    "total_found": "integer - number of therapists returned",
    "more_results_available": "boolean - whether more results exist beyond the 50 returned"
  },
  "sample": {
    "data": {
      "plz": "10115",
      "radius_km": 25,
      "specialty": "psychotherapie",
      "therapists": [
        {
          "fax": "",
          "lat": 52.531316,
          "lon": 13.394282,
          "plz": "10115",
          "city": "Berlin",
          "name": "John Doe",
          "email": "[email protected]",
          "phone": "+1 (555) 012-3456",
          "title": "Dr.",
          "gender": "M",
          "street": "123 Main St",
          "address": "123 Main St, 10115 Berlin",
          "website": "",
          "last_name": "Doe",
          "specialty": [],
          "distance_m": 326,
          "first_name": "John",
          "distance_km": 0.33
        }
      ],
      "total_found": 120,
      "more_results_available": true
    },
    "status": "success"
  }
}

About the arztsuche.116117.de API

The 116117 Arztsuche API gives access to Germany's official doctor-search portal through 4 endpoints, returning structured provider data including name, address, phone number, GPS coordinates, and distance. The search_therapists endpoint accepts a German postal code (PLZ) and an optional specialty filter, delivering up to 50 closest results in a single call. For complete area coverage, search_all_therapists fans out across a geographic grid and deduplicates results.

What the API covers

The API exposes doctor and therapist listings from arztsuche.116117.de, the official German 116117 health-line search portal. Each provider record includes name, address, distance_km, phone, specialty, lat, and lon. Searches are anchored to a German postal code (plz) and can be narrowed with a specialty value such as psychotherapie, hausarzt, augenarzt, or chirurgie.

Endpoints in detail

search_therapists returns up to 50 providers sorted by distance from the given PLZ. The optional radius_km parameter applies a client-side distance filter on those 50 results. The more_results_available boolean in the response tells you whether additional providers exist beyond the returned set. For exhaustive area sweeps, search_all_therapists issues a grid of queries spaced grid_spacing_km apart, deduplicates matches, and reports how many queries were made (queries_made) — use a smaller grid_spacing_km (2–3 km) for dense urban areas.

Supporting lookups

search_location resolves a city name or postal code string into structured suggestions, each carrying a label, type (PLZ or city), and plz value you can feed directly into therapist searches. search_specialty translates a German specialty term — for example Orthopädie or Psychotherapeut — into category entries with a code, value, and provider count, so you can discover valid filter codes before constructing a therapist query.

Coverage and limitations

The API covers providers listed in the 116117 portal for Germany. search_therapists always returns the 50 geographically closest results; it does not paginate beyond that cap. search_all_therapists compensates by querying multiple grid points, but response time scales with grid density and radius size — keep radius_km modest (5–10 km) or increase grid_spacing_km for faster responses over larger areas.

Common use cases
  • Build a nearest-therapist locator widget that accepts a German PLZ and displays results with distance_km and phone.
  • Aggregate psychotherapy availability across German cities by running search_all_therapists with specialty=psychotherapie for each city's postal code.
  • Populate a provider directory app with GPS coordinates (lat, lon) for map-based display of doctors near a user.
  • Validate or auto-complete specialty filter codes using search_specialty before constructing a filtered search_therapists request.
  • Resolve ambiguous user-typed city names to canonical PLZ values with search_location before passing them to therapist search.
  • Benchmark doctor density across regions by comparing total_found counts from search_all_therapists queries centered on different postal codes.
  • Monitor whether new providers appear in a specific area by periodically calling search_therapists and diffing results against a stored list.
Pricing & limitsSee full pricing →
TierPriceCredits/monthRate limit
Free$0/mo1005 req/min
Hobby$30/mo1,00020 req/min
Developer$100/mo5,000250 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 116117 Arztsuche have an official developer API?+
No. arztsuche.116117.de does not publish an official public API or developer program. This Parse API provides structured access to the data available on that portal.
What does `search_all_therapists` return that `search_therapists` doesn't?+
search_therapists returns the 50 providers geographically closest to the given PLZ in one call. search_all_therapists issues multiple queries across a geographic grid and deduplicates results, so it can surface providers that fall within your radius_km but weren't in the closest-50 set. The response includes a queries_made field showing how many grid queries were executed and a grid_spacing_km field confirming the resolution used.
Does the API expose appointment booking or availability schedules?+
No. The API returns contact and location data — name, address, phone, specialty, lat, lon, and distance_km — but not appointment slots or availability calendars. Those details are not part of the 116117 portal's public listing data. You can fork this API on Parse and revise it to add an endpoint that targets a booking surface if one becomes available.
Can I retrieve provider profiles with detailed credentials or insurance acceptance?+
Not currently. The endpoints return core contact and location fields per provider. Detailed credentials, accepted health insurance types (Kassenzulassung), and clinic affiliations are not included in the current response shape. You can fork the API on Parse and revise it to add the missing fields if the portal exposes them at a per-provider detail URL.
How does the `radius_km` parameter behave in `search_therapists`?+
The 116117 portal always returns the 50 closest providers to the given PLZ regardless of radius. The radius_km value in search_therapists applies a filter on those 50 results after they are retrieved, so it can only reduce the returned set, not expand it beyond 50. The more_results_available boolean indicates whether providers beyond the cap exist. Use search_all_therapists with a defined radius_km for a more complete picture of a specific geographic area.
Page content last updated . Spec covers 4 endpoints from arztsuche.116117.de.
Related APIs in HealthcareSee all →
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.
radiopaedia.org API
Search medical cases and images on Radiopaedia to find relevant radiology references, and stay updated with the latest articles in medical imaging. Access case details, diagnostic images, and recent content updates all in one place.
tbca.net.br API
Search Brazil's most comprehensive food database to get detailed nutritional profiles, household portion measurements, and statistical composition data for thousands of foods including regional and biodiversity-focused options. Find specific nutrients by component, browse foods by group or type, and access institutional food information all in one place.
accessdata.fda.gov API
Search and retrieve comprehensive FDA premarket approval information for medical devices, including approval status, supplements, applicant details, and advisory committee data. Get instant access to specific PMA records with all relevant approval information in one place.
cabi.org API
Search and retrieve detailed information about plant diseases from the CABI Digital Library, including disease characteristics, symptoms, and management strategies. Find specific disease data by name or browse the comprehensive Compendium to identify and understand plant health issues.
azbar.org API
Search for Arizona lawyers by name, location, specialty, or company to find the right legal professional for your needs. View detailed lawyer profiles including their specializations, licensed jurisdictions, law school, admission history, and any disciplinary records.
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.
drunkelephant.com API
Search and browse Drunk Elephant's full product catalog by category or collection, view detailed product information including ingredients and specifications, and access customer ratings and reviews. Find the perfect skincare and beauty products for your needs with comprehensive product details and authentic customer feedback.