Marketplace
No threads yet
Live

list_category_albums

ximalaya.com

Lists albums from a Ximalaya content category at https://ximalaya.com, sorted by popularity, with pagination, play and track counts, and anchor metadata.

Parameters3
Runs11
Updated10d ago
Operational11 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_category_albums?

Lists albums from a Ximalaya content category at https://ximalaya.com, sorted by popularity, with pagination, play and track counts, and anchor metadata. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass category, page, page_size and get the result back without maintaining a scraper.

Response

{
  "page": 0,
  "sort": "<string>",
  "total": 0,
  "albums": [
    {
      "uid": 0,
      "link": "<string>",
      "title": "<string>",
      "isPaid": true,
      "albumId": 0,
      "vipType": 0,
      "coverPath": "<string>",
      "playCount": 0,
      "anchorName": "<string>",
      "isFinished": 0,
      "trackCount": 0,
      "subscriptInfo": {},
      "albumSubscript": 0
    }
  ],
  "hasMore": true,
  "category": "<string>",
  "pageSize": 0,
  "totalPages": 0
}

Call it

curl --location 'https://us-prod.notte.cc/functions/22dbe67b-c94f-4296-981b-4f88eaa2b07d/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
    "function_id": "22dbe67b-c94f-4296-981b-4f88eaa2b07d",
    "variables": {
        "category": "youshengshu",
        "page": 1,
        "page_size": 10
    }
}'

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="22dbe67b-c94f-4296-981b-4f88eaa2b07d") — the "list_category_albums" function, which lists albums from a Ximalaya content category at https://ximalaya.com, sorted by popularity, with pagination, play and track counts, and anchor metadata..

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