Marketplace
No threads yet
Live

list_album_tracks

ximalaya.com

Lists paginated tracks from an album on https://ximalaya.com with complete track metadata, duration, plays, likes, comments, pricing, and album order.

Parameters5
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 list_album_tracks?

Lists paginated tracks from an album on https://ximalaya.com with complete track metadata, duration, plays, likes, comments, pricing, and album order. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass album_id, page, page_size, sort, timeout_seconds and get the result back without maintaining a scraper.

Response

{
  "page": 0,
  "sort": "<string>",
  "tracks": [
    {}
  ],
  "albumId": 0,
  "hasMore": true,
  "pageSize": 0,
  "totalPages": 0,
  "totalTracks": 0
}

Call it

curl --location 'https://us-prod.notte.cc/functions/68760cfa-65ea-41fc-8c4f-5cccc3581e13/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
    "function_id": "68760cfa-65ea-41fc-8c4f-5cccc3581e13",
    "variables": {
        "album_id": "DEFAULT_ALBUM_ID",
        "page": 1,
        "page_size": 10,
        "sort": "asc",
        "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="68760cfa-65ea-41fc-8c4f-5cccc3581e13") — the "list_album_tracks" function, which lists paginated tracks from an album on https://ximalaya.com with complete track metadata, duration, plays, likes, comments, pricing, and album order..

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