get_album_details
ximalaya.comRetrieves detailed metadata for a single Ximalaya album from https://ximalaya.com in one request, including title, plays, subscriptions, pricing, category, intro, dates, and anchor details.
Playground
Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.
What is get_album_details?
Retrieves detailed metadata for a single Ximalaya album from https://ximalaya.com in one request, including title, plays, subscriptions, pricing, category, intro, dates, and anchor details. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass album_id, timeout_seconds and get the result back without maintaining a scraper.
Response
{
"cover": "<string>",
"title": "<string>",
"anchor": {},
"isPaid": true,
"albumId": 0,
"pricing": {},
"category": {},
"playCount": 0,
"createDate": "<string>",
"isFinished": 0,
"updateDate": "<string>",
"albumMetadata": {},
"subscribeCount": 0
}Call it
curl --location 'https://us-prod.notte.cc/functions/206e717d-83e0-4c1f-a58e-9a3dcc551c3a/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "206e717d-83e0-4c1f-a58e-9a3dcc551c3a",
"variables": {
"album_id": 47517749,
"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="206e717d-83e0-4c1f-a58e-9a3dcc551c3a") — the "get_album_details" function, which retrieves detailed metadata for a single Ximalaya album from https://ximalaya.com in one request, including title, plays, subscriptions, pricing, category, intro, dates, and anchor details.. It takes album_id (int), timeout_seconds (int). Return the result as structured JSON.