Marketplace
No threads yet
Live

search_doctors_by_location

patientennavi.116117.de

Searches for doctors and psychotherapists near a German ZIP code or city and returns detailed provider records from https://patientennavi.116117.de, sorted by distance. Results include specialties, address, contacts, coordinates, languages, accessibility, office hours, and other available practitioner details.

Parameters1
Runs11
Updated10d ago
Operational11 runs · 100% succeeded
30 days agotoday

Playground

Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.

What is search_doctors_by_location?

Searches for doctors and psychotherapists near a German ZIP code or city and returns detailed provider records from https://patientennavi.116117.de, sorted by distance. Results include specialties, address, contacts, coordinates, languages, accessibility, office hours, and other available practitioner details. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass location and get the result back without maintaining a scraper.

Response

{
  "query": "<string>",
  "source": "<string>",
  "result_count": 0,
  "practitioners": [
    {
      "address": {},
      "full_name": "<string>",
      "languages": [
        "<string>"
      ],
      "source_id": "<string>",
      "coordinates": {
        "latitude": 0,
        "longitude": 0
      },
      "gender_code": "<string>",
      "specialties": [
        {
          "code": "<string>",
          "label": "<string>",
          "subspecialties": [
            {
              "code": "<string>",
              "label": "<string>"
            }
          ]
        }
      ],
      "name_details": {},
      "office_hours": [
        {
          "date": "<string>",
          "periods": [
            {
              "slots": [
                {}
              ],
              "type_code": "<string>",
              "type_label": "<string>"
            }
          ]
        }
      ],
      "opening_status": "<string>",
      "contact_details": {},
      "distance_meters": 0,
      "special_services": [
        {
          "values": [
            "<string>"
          ],
          "heading": "<string>"
        }
      ],
      "authorized_provider": true,
      "psychotherapy_methods": [
        {
          "values": [
            "<string>"
          ],
          "heading": "<string>"
        }
      ],
      "office_hours_available": true,
      "source_marks_as_doctor": true,
      "second_opinion_services": [
        "<string>"
      ],
      "accessibility_categories": [
        {
          "code": "<string>",
          "label": "<string>",
          "features": [
            {
              "code": "<string>",
              "label": "<string>"
            }
          ]
        }
      ],
      "additional_qualifications": [
        "<string>"
      ],
      "regional_association_code": "<string>",
      "next_telephone_availability": {},
      "legacy_accessibility_features": [
        {
          "code": "<string>",
          "label": "<string>"
        }
      ]
    }
  ],
  "resolved_location": "<string>",
  "more_results_available": true
}

Call it

curl --location 'https://us-prod.notte.cc/functions/b9e51121-7973-479b-86f8-c8da5cbdf5aa/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
    "function_id": "b9e51121-7973-479b-86f8-c8da5cbdf5aa",
    "variables": {
        "location": "10115 Berlin"
    }
}'

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="b9e51121-7973-479b-86f8-c8da5cbdf5aa") — the "search_doctors_by_location" function, which searches for doctors and psychotherapists near a German ZIP code or city and returns detailed provider records from https://patientennavi.116117.de, sorted by distance. Results include specialties, address, contacts, coordinates, languages, accessibility, office hours, and other available practitioner details..

It takes location (str). Return the result as structured JSON.