get_homepage_listings
vinted.itRetrieves the current secondhand items shown on the https://vinted.it homepage, including IDs, names, prices, promotion status, direct URLs, photos, and seller details exposed for each listing. Returns one live landing-page batch without pagination.
Playground
Runs on Notte and spends your workspace credits — what comes back is the live response, not a sample.
What is get_homepage_listings?
Retrieves the current secondhand items shown on the https://vinted.it homepage, including IDs, names, prices, promotion status, direct URLs, photos, and seller details exposed for each listing. Returns one live landing-page batch without pagination. It runs on Notte's browser infrastructure and returns structured JSON, so you can call it like any other API — call it with no parameters and get the result back without maintaining a scraper.
Response
{
"count": 0,
"items": [
{
"id": 0,
"name": "<string>",
"user": {},
"price": {
"amount": "<string>",
"currency_code": "<string>"
},
"title": "<string>",
"direct_url": "<string>",
"is_promoted": true,
"service_fee": {
"amount": "<string>",
"currency_code": "<string>"
},
"is_favourite": true,
"thumbnail_url": "<string>",
"dominant_color": "<string>",
"favourite_count": 0,
"promotion_status": true,
"total_item_price": {
"amount": "<string>",
"currency_code": "<string>"
}
}
],
"source_url": "<string>"
}Call it
curl --location 'https://us-prod.notte.cc/functions/54d2654f-6199-4224-807b-95156a5bfb48/runs/start' \
--header 'x-notte-api-key: YOUR_API_KEY' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer YOUR_API_KEY' \
--data '{
"function_id": "54d2654f-6199-4224-807b-95156a5bfb48",
"variables": {}
}'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="54d2654f-6199-4224-807b-95156a5bfb48") — the "get_homepage_listings" function, which retrieves the current secondhand items shown on the https://vinted.it homepage, including IDs, names, prices, promotion status, direct URLs, photos, and seller details exposed for each listing. Returns one live landing-page batch without pagination.. It takes no parameters. Return the result as structured JSON.