Marketplace
No threads yet
Live

get_share_metadata

pan.baidu.com

Returns status, owner details, and identifiers for a https://pan.baidu.com share using its short URL code, including inactive links.

Parameters1
Runs3
Updated5h ago
Operational3 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 get_share_metadata?

Returns status, owner details, and identifiers for a https://pan.baidu.com share using its short URL code, including inactive links. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass short_url_code and get the result back without maintaining a scraper.

Response

{
  "url": "<string>",
  "owner": {},
  "status": "<string>",
  "metadata": {},
  "identifiers": {},
  "short_url_code": "<string>",
  "status_message": "<string>"
}

Call it

curl --location 'https://us-prod.notte.cc/functions/1c66b616-6b7f-483a-991e-97c9441fbb24/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
    "function_id": "1c66b616-6b7f-483a-991e-97c9441fbb24",
    "variables": {
        "short_url_code": "1myPJQb0Jp6uPDQd2qJAjaA"
    }
}'

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="1c66b616-6b7f-483a-991e-97c9441fbb24") — the "get_share_metadata" function, which returns status, owner details, and identifiers for a https://pan.baidu.com share using its short URL code, including inactive links..

It takes short_url_code (str). Return the result as structured JSON.