search_listings
vinted.frSearches secondhand product listings on https://www.vinted.fr with full-text, price, category, condition, sorting, and page filters. Returns product, seller, photo, pricing, and engagement details with pagination.
Playground
Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.
What is search_listings?
Searches secondhand product listings on https://www.vinted.fr with full-text, price, category, condition, sorting, and page filters. Returns product, seller, photo, pricing, and engagement details with pagination. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass query, order, price_from, price_to, category_ids, condition_ids, page, per_page and get the result back without maintaining a scraper.
Response
{
"site": "<string>",
"items": [
{}
],
"order": "<string>",
"query": "<string>",
"filters": {},
"pagination": {
"per_page": 0,
"total_pages": 0,
"current_page": 0,
"total_entries": 0
}
}Call it
curl --location 'https://us-prod.notte.cc/functions/e828d354-e068-4f26-a265-c93bdd64685a/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "e828d354-e068-4f26-a265-c93bdd64685a",
"variables": {
"query": "",
"order": "relevance",
"price_from": 0.0,
"price_to": 0.0,
"category_ids": [],
"condition_ids": [],
"page": 1,
"per_page": 24
}
}'Ask an agent
Paste this into Claude Code, Cursor or any MCP client to have an agent call this function for you.
Use the Anything API MCP server (https://anything.notte.cc/mcp). Call run(function_id="e828d354-e068-4f26-a265-c93bdd64685a") — the "search_listings" function, which searches secondhand product listings on https://www.vinted.fr with full-text, price, category, condition, sorting, and page filters. Returns product, seller, photo, pricing, and engagement details with pagination.. It takes query (str), order (str), price_from (float), price_to (float), category_ids (list[int]), condition_ids (list[int]), page (int), per_page (int). Return the result as structured JSON.