search_doctors
lybrate.comSearches doctors on https://lybrate.com by city and optional specialty, returning Lybrate-ranked paginated results with profile details, clinic locations, consultation fees, and availability fields.
Playground
Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.
What is search_doctors?
Searches doctors on https://lybrate.com by city and optional specialty, returning Lybrate-ranked paginated results with profile details, clinic locations, consultation fees, and availability fields. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass city_name, specialty, page, nearby_locality, locale, timeout_seconds and get the result back without maintaining a scraper.
Response
{
"page": 0,
"results": [
{}
],
"city_name": "<string>",
"page_size": 0,
"specialty": "<string>",
"total_count": 0,
"total_pages": 0,
"has_next_page": true,
"results_found": 0,
"related_results": [
{}
],
"sponsored_results": [
{}
]
}Call it
curl --location 'https://us-prod.notte.cc/functions/1d18f7e7-15c2-4ec7-8303-f46122bad854/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "1d18f7e7-15c2-4ec7-8303-f46122bad854",
"variables": {
"city_name": "Delhi",
"specialty": "dermatologist",
"page": 1,
"nearby_locality": "",
"locale": "en",
"timeout_seconds": 20
}
}'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="1d18f7e7-15c2-4ec7-8303-f46122bad854") — the "search_doctors" function, which searches doctors on https://lybrate.com by city and optional specialty, returning Lybrate-ranked paginated results with profile details, clinic locations, consultation fees, and availability fields.. It takes city_name (str), specialty (str), page (int), nearby_locality (str), locale (str), timeout_seconds (int). Return the result as structured JSON.