Marketplace
No threads yet
Live

get_listing_details

discogs.com

Retrieves comprehensive Discogs Marketplace listing details from https://www.discogs.com, including price, condition, seller, shipping policy and quote, release metadata, images, and tracklist.

Parameters1
Runs12
Updated10d ago
Failing12 runs · 66.6% 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_listing_details?

Retrieves comprehensive Discogs Marketplace listing details from https://www.discogs.com, including price, condition, seller, shipping policy and quote, release metadata, images, and tracklist. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass listing_id and get the result back without maintaining a scraper.

Response

{
  "price": {},
  "seller": {},
  "listing": {},
  "release": {},
  "shipping": {},
  "condition": {},
  "tracklist": [
    {}
  ],
  "listing_id": "<string>",
  "listing_url": "<string>",
  "structured_product_data": {}
}

Call it

curl --location 'https://us-prod.notte.cc/functions/4f47bae1-54a4-4518-90b6-b3c1278d742e/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
    "function_id": "4f47bae1-54a4-4518-90b6-b3c1278d742e",
    "variables": {
        "listing_id": "83939755"
    }
}'

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="4f47bae1-54a4-4518-90b6-b3c1278d742e") — the "get_listing_details" function, which retrieves comprehensive Discogs Marketplace listing details from https://www.discogs.com, including price, condition, seller, shipping policy and quote, release metadata, images, and tracklist..

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