Marketplace
No threads yet
Live

get_doctor_profile_details

lybrate.com

Returns a complete doctor profile from https://lybrate.com with education, experience, clinics, treatments, reviews, health posts, and media.

Parameters3
Runs6
Updated3d ago
Operational6 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 get_doctor_profile_details?

Returns a complete doctor profile from https://lybrate.com with education, experience, clinics, treatments, reviews, health posts, and media. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass city, username, timeout_seconds and get the result back without maintaining a scraper.

Response

{
  "city": "<string>",
  "title": "<string>",
  "profile": {},
  "username": "<string>",
  "source_url": "<string>",
  "description": "<string>",
  "health_feed": [
    {}
  ],
  "health_feed_count": 0
}

Call it

curl --location 'https://us-prod.notte.cc/functions/687e0820-c414-46f3-93c8-5a0c59953696/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
    "function_id": "687e0820-c414-46f3-93c8-5a0c59953696",
    "variables": {
        "city": "delhi",
        "username": "dr-sunakshi-singh-dermatologist",
        "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.

prompt
Use the Anything API MCP server (https://anything.notte.cc/mcp).

Call run(function_id="687e0820-c414-46f3-93c8-5a0c59953696") — the "get_doctor_profile_details" function, which returns a complete doctor profile from https://lybrate.com with education, experience, clinics, treatments, reviews, health posts, and media..

It takes city (str), username (str), timeout_seconds (int). Return the result as structured JSON.