search_albums
ximalaya.comSearches album titles and descriptions on https://ximalaya.com and returns paginated album summaries with play counts, track counts, anchor info, intro text, and all non-empty source fields.
Playground
Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.
What is search_albums?
Searches album titles and descriptions on https://ximalaya.com and returns paginated album summaries with play counts, track counts, anchor info, intro text, and all non-empty source fields. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass query, page, page_size, timeout_seconds and get the result back without maintaining a scraper.
Response
{
"page": 0,
"query": "<string>",
"total": 0,
"albums": [
{}
],
"hasMore": true,
"pageSize": 0,
"totalPages": 0
}Call it
curl --location 'https://us-prod.notte.cc/functions/f692a2ea-f4a6-4a6f-b989-9a7419265a59/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "f692a2ea-f4a6-4a6f-b989-9a7419265a59",
"variables": {
"query": "三体",
"page": 1,
"page_size": 20,
"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="f692a2ea-f4a6-4a6f-b989-9a7419265a59") — the "search_albums" function, which searches album titles and descriptions on https://ximalaya.com and returns paginated album summaries with play counts, track counts, anchor info, intro text, and all non-empty source fields.. It takes query (str), page (int), page_size (int), timeout_seconds (int). Return the result as structured JSON.