Marketplace
No threads yet
Live

get_item_details

fr.wallapop.com

Get a complete Wallapop item record from https://fr.wallapop.com by URL slug, including pricing, availability, condition, images, seller statistics, location, delivery details, and category-specific attributes.

Parameters1
Runs9
Updated10d ago
Failing9 runs · 55.5% 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_item_details?

Get a complete Wallapop item record from https://fr.wallapop.com by URL slug, including pricing, availability, condition, images, seller statistics, location, delivery details, and category-specific attributes. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass item_slug and get the result back without maintaining a scraper.

Response

{
  "item": {},
  "seller": {},
  "delivery": {},
  "item_slug": "<string>",
  "page_flags": {},
  "source_url": "<string>",
  "availability": {}
}

Call it

curl --location 'https://us-prod.notte.cc/functions/50479f8c-deb5-4e70-a7cd-b8ca400349ba/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
    "function_id": "50479f8c-deb5-4e70-a7cd-b8ca400349ba",
    "variables": {
        "item_slug": "iphone-11-y-iphone-se-1291261151"
    }
}'

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="50479f8c-deb5-4e70-a7cd-b8ca400349ba") — the "get_item_details" function, which get a complete Wallapop item record from https://fr.wallapop.com by URL slug, including pricing, availability, condition, images, seller statistics, location, delivery details, and category-specific attributes..

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