Live
list_share_files
pan.baidu.comLists embedded file records and share metadata from a https://pan.baidu.com share page; cancelled or expired shares return an empty file list.
Parameters2
Runs3
Updated5h ago
Operational3 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 list_share_files?
Lists embedded file records and share metadata from a https://pan.baidu.com share page; cancelled or expired shares return an empty file list. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass short_url_code, extraction_code and get the result back without maintaining a scraper.
Response
{
"url": "<string>",
"files": [
{}
],
"owner": {},
"status": "<string>",
"metadata": {},
"file_count": 0,
"identifiers": {},
"short_url_code": "<string>",
"status_message": "<string>",
"extraction_code_verified": true,
"requires_extraction_code": true
}Call it
curl --location 'https://us-prod.notte.cc/functions/66e7c1d4-4566-43b0-9592-2d71f5fa0718/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "66e7c1d4-4566-43b0-9592-2d71f5fa0718",
"variables": {
"short_url_code": "1myPJQb0Jp6uPDQd2qJAjaA",
"extraction_code": "38q5"
}
}'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="66e7c1d4-4566-43b0-9592-2d71f5fa0718") — the "list_share_files" function, which lists embedded file records and share metadata from a https://pan.baidu.com share page; cancelled or expired shares return an empty file list.. It takes short_url_code (str), extraction_code (str). Return the result as structured JSON.