Marketplace
No threads yet
Live

list_health_feed

lybrate.com

Browses the paginated health feed on https://lybrate.com and returns feed items such as doctor-authored health tips, Q&As, and related content with pagination metadata.

Parameters3
Runs9
Updated8d ago
Operational9 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 list_health_feed?

Browses the paginated health feed on https://lybrate.com and returns feed items such as doctor-authored health tips, Q&As, and related content with pagination metadata. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass keyword, page, timeout_seconds and get the result back without maintaining a scraper.

Response

{
  "page": 0,
  "items": [
    {}
  ],
  "title": "<string>",
  "keyword": "<string>",
  "perm_link": "<string>",
  "item_count": 0,
  "story_type": "<string>",
  "description": "<string>",
  "canonical_url": "<string>",
  "has_next_page": true,
  "next_page_url": "<string>",
  "previous_page_url": "<string>"
}

Call it

curl --location 'https://us-prod.notte.cc/functions/63718847-5e1b-4a1b-b89e-a815fb0f731f/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
    "function_id": "63718847-5e1b-4a1b-b89e-a815fb0f731f",
    "variables": {
        "keyword": "weight-loss",
        "page": 1,
        "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="63718847-5e1b-4a1b-b89e-a815fb0f731f") — the "list_health_feed" function, which browses the paginated health feed on https://lybrate.com and returns feed items such as doctor-authored health tips, Q&As, and related content with pagination metadata..

It takes keyword (str), page (int), timeout_seconds (int). Return the result as structured JSON.