Live
search_health_content
lybrate.comSearches articles and Q&As on https://lybrate.com by keyword, returning complete paginated feed records and topic metadata.
Parameters3
Runs5
Updated3d ago
Operational5 runs · 100% succeeded
30 days ago90 days agoranfailednot checkedtoday
Playground
Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.
What is search_health_content?
Searches articles and Q&As on https://lybrate.com by keyword, returning complete paginated feed records and topic metadata. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass query, page, timeout_seconds and get the result back without maintaining a scraper.
Response
{
"page": 0,
"items": [
{}
],
"query": "<string>",
"item_count": 0,
"has_next_page": true,
"next_page_url": "<string>",
"topic_metadata": {},
"previous_page_url": "<string>"
}Call it
curl --location 'https://us-prod.notte.cc/functions/e98180c0-07d0-4d15-8fce-099f2c9ea287/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "e98180c0-07d0-4d15-8fce-099f2c9ea287",
"variables": {
"query": "diabetes",
"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="e98180c0-07d0-4d15-8fce-099f2c9ea287") — the "search_health_content" function, which searches articles and Q&As on https://lybrate.com by keyword, returning complete paginated feed records and topic metadata.. It takes query (str), page (int), timeout_seconds (int). Return the result as structured JSON.