search_doctors_by_state
patientennavi.116117.deSearches for doctors and psychotherapists across a German federal state using representative cities, then deduplicates detailed provider records from https://patientennavi.116117.de by name and address. It returns all unique practitioners found with specialties, contacts, coordinates, languages, accessibility, office hours, and other available details.
Playground
Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.
What is search_doctors_by_state?
Searches for doctors and psychotherapists across a German federal state using representative cities, then deduplicates detailed provider records from https://patientennavi.116117.de by name and address. It returns all unique practitioners found with specialties, contacts, coordinates, languages, accessibility, office hours, and other available details. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass state and get the result back without maintaining a scraper.
Response
{
"state": "<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>"
}
]
}
],
"representative_cities": [
"<string>"
],
"more_results_available": true,
"locations_with_more_results": [
"<string>"
],
"representative_location_count": 0
}Call it
curl --location 'https://us-prod.notte.cc/functions/2fcc950a-d573-4b7d-8f6b-162aafe4e4bf/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "2fcc950a-d573-4b7d-8f6b-162aafe4e4bf",
"variables": {
"state": "Berlin"
}
}'Ask an agent
Paste this into Claude Code, Cursor or any MCP client to have an agent call this function for you.
Use the Anything API MCP server (https://anything.notte.cc/mcp). Call run(function_id="2fcc950a-d573-4b7d-8f6b-162aafe4e4bf") — the "search_doctors_by_state" function, which searches for doctors and psychotherapists across a German federal state using representative cities, then deduplicates detailed provider records from https://patientennavi.116117.de by name and address. It returns all unique practitioners found with specialties, contacts, coordinates, languages, accessibility, office hours, and other available details.. It takes state (str). Return the result as structured JSON.