Marketplace
No threads yet
Live

get_listing_details

ebay.ca

Returns full details for one listing from https://ebay.ca by item ID, including Product LD+JSON, item specifics, pricing, condition, media, shipping, description, and seller data.

Parameters2
Runs8
Updated3d ago
Operational8 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_listing_details?

Returns full details for one listing from https://ebay.ca by item ID, including Product LD+JSON, item specifics, pricing, condition, media, shipping, description, and seller data. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass item_id, timeout_seconds and get the result back without maintaining a scraper.

Response

{
  "listing": {}
}

Call it

curl --location 'https://us-prod.notte.cc/functions/830a1728-9012-4fff-ad57-1d154817271c/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
    "function_id": "830a1728-9012-4fff-ad57-1d154817271c",
    "variables": {
        "item_id": "DEFAULT_ITEM_ID",
        "timeout_seconds": 25
    }
}'

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="830a1728-9012-4fff-ad57-1d154817271c") — the "get_listing_details" function, which returns full details for one listing from https://ebay.ca by item ID, including Product LD+JSON, item specifics, pricing, condition, media, shipping, description, and seller data..

It takes item_id (str), timeout_seconds (int). Return the result as structured JSON.