Marketplace
No threads yet
Live

list_album_comments

ximalaya.com

Returns paginated album comments from https://ximalaya.com with author, likes, replies, region, timestamps, and complete album score statistics.

Parameters5
Runs10
Updated3d ago
Operational10 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_comments?

Returns paginated album comments from https://ximalaya.com with author, likes, replies, region, timestamps, and complete album score statistics. 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, order, timeout_seconds and get the result back without maintaining a scraper.

Response

{
  "page": 0,
  "order": "<string>",
  "albumId": 0,
  "hasMore": true,
  "comments": [
    {}
  ],
  "pageSize": 0,
  "totalPages": 0,
  "totalComments": 0,
  "ratingStatistics": {}
}

Call it

curl --location 'https://us-prod.notte.cc/functions/03eefedf-50ff-4cc5-84a6-f085bc00094f/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
    "function_id": "03eefedf-50ff-4cc5-84a6-f085bc00094f",
    "variables": {
        "album_id": "DEFAULT_ALBUM_ID",
        "page": 1,
        "page_size": 10,
        "order": "latest",
        "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="03eefedf-50ff-4cc5-84a6-f085bc00094f") — the "list_album_comments" function, which returns paginated album comments from https://ximalaya.com with author, likes, replies, region, timestamps, and complete album score statistics..

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