Live
get_content_categories
ximalaya.comReturns Ximalaya's complete content-category tree, including pinyin keys and subcategories, from https://ximalaya.com. The result is unpaginated.
Parameters0
Runs10
Updated10d ago
Operational10 runs · 100% succeeded
30 days ago90 days agoranfailednot checkedtoday
Playground
Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.
What is get_content_categories?
Returns Ximalaya's complete content-category tree, including pinyin keys and subcategories, from https://ximalaya.com. The result is unpaginated. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — call it with no parameters and get the result back without maintaining a scraper.
Response
{
"groups": [
{
"id": 0,
"name": "<string>",
"position": 0,
"groupType": 0,
"categories": [
{
"id": 0,
"link": "<string>",
"name": "<string>",
"pinyin": "<string>",
"picPath": "<string>",
"position": 0,
"displayName": "<string>",
"categoryType": 0,
"displayStatus": 0,
"subcategories": [
{
"id": 0,
"code": "<string>",
"link": "<string>",
"position": 0,
"isKeyword": true,
"categoryId": 0,
"metadataId": 0,
"displayValue": "<string>",
"displayStatus": 0,
"metadataValue": "<string>"
}
]
}
],
"displayStatus": 0
}
],
"groupCount": 0,
"categoryCount": 0
}Call it
curl --location 'https://us-prod.notte.cc/functions/e4a93437-2fef-480c-bb94-d0c95a85e28a/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "e4a93437-2fef-480c-bb94-d0c95a85e28a",
"variables": {}
}'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="e4a93437-2fef-480c-bb94-d0c95a85e28a") — the "get_content_categories" function, which returns Ximalaya's complete content-category tree, including pinyin keys and subcategories, from https://ximalaya.com. The result is unpaginated.. It takes no parameters. Return the result as structured JSON.