Marketplace
No threads yet
Live

search_listings

vinted.it

Searches first-page secondhand catalog listings on https://vinted.it for a single- or multi-word keyword in any language. Returns up to 96 live matches with IDs, names, promotion status, direct URLs, prices, photos, favorites, and seller details exposed for each item.

Parameters1
Runs11
Updated10d ago
Failing11 runs · 90.9% 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 search_listings?

Searches first-page secondhand catalog listings on https://vinted.it for a single- or multi-word keyword in any language. Returns up to 96 live matches with IDs, names, promotion status, direct URLs, prices, photos, favorites, and seller details exposed for each item. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — pass query and get the result back without maintaining a scraper.

Response

{
  "count": 0,
  "items": [
    {
      "id": 0,
      "url": "<string>",
      "name": "<string>",
      "user": {},
      "photo": {},
      "price": {
        "amount": "<string>",
        "currency_code": "<string>"
      },
      "title": "<string>",
      "photos": [
        {}
      ],
      "promoted": true,
      "direct_url": "<string>",
      "view_count": 0,
      "service_fee": {
        "amount": "<string>",
        "currency_code": "<string>"
      },
      "is_favourite": true,
      "favourite_count": 0,
      "promotion_status": true,
      "total_item_price": {
        "amount": "<string>",
        "currency_code": "<string>"
      },
      "show_1st_time_seller_discount": true
    }
  ],
  "query": "<string>",
  "source_url": "<string>"
}

Call it

curl --location 'https://us-prod.notte.cc/functions/bb015ade-2263-40a9-bdf7-093a252f8b37/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
    "function_id": "bb015ade-2263-40a9-bdf7-093a252f8b37",
    "variables": {
        "query": "vintage"
    }
}'

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="bb015ade-2263-40a9-bdf7-093a252f8b37") — the "search_listings" function, which searches first-page secondhand catalog listings on https://vinted.it for a single- or multi-word keyword in any language. Returns up to 96 live matches with IDs, names, promotion status, direct URLs, prices, photos, favorites, and seller details exposed for each item..

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