Vinted Monitor — New Listings, Prices & Discord Alerts
Pricing
from $1.49 / 1,000 listings
Vinted Monitor — New Listings, Prices & Discord Alerts
Monitor and scrape Vinted catalog listings across 22 European markets. Extract prices, brands, sizes, conditions, seller ratings, and photos from search URLs or keywords. Discord and Telegram alerts for new items.
Pricing
from $1.49 / 1,000 listings
Rating
0.0
(0)
Developer
Andrej Kiva
Maintained by CommunityActor stats
0
Bookmarked
2
Total users
1
Monthly active users
4 days ago
Last modified
Categories
Share
Disclaimer: Unofficial tool for publicly accessible Vinted catalog search results. Vinted and related names are trademarks of Vinted Limited. Not affiliated with, sponsored by, or endorsed by Vinted Limited. Public catalog fields only — no private messages, emails, or phone numbers.
Monitor new Vinted listings and scrape catalog search results across 22 European markets. Export prices, brands, sizes, conditions, seller ratings, and photos from a filtered catalog URL or a keyword — then send Discord and Telegram alerts when unseen items appear. Fast curl_cffi JSON path, no browser.
Best for: resellers, snipers, and price-tracking pipelines that need a Vinted scraper plus a scheduled Vinted monitor, not a full seller-wardrobe dump.
| Vinted Monitor | Vinted Seller Scraper |
|---|---|
| Vinted Monitor ◄── you are here | Vinted Seller Scraper |
When to use this Actor
- New listing alerts — schedule every 2–5 minutes and get Discord / Telegram cards for unseen items
- Catalog / keyword scrape — paste a filtered Vinted search URL or a keyword and export JSON / CSV
- Price tracking — brand, size, condition, favourites, and asking price per market
- Multi-market runs — mix
.fr,.de,.co.uk,.plcatalog URLs in one input - Python / Node.js / MCP pipelines — structured dataset, no Playwright
When not to use this Actor
- Seller wardrobe or buyer reviews — use Vinted Seller Scraper with member URLs or seller IDs
- Sold listing comps — Vinted hides sold items; use eBay Sold Listings Scraper for completed-sale prices
- Private messages, emails, or phone numbers — not collected
- Official Vinted API replacement — public catalog JSON only, with a residential proxy
Key features
- Catalog URL or keyword — filters from the browser URL (brand, size, category, price) are forwarded
- 22 markets — FR, DE, UK, PL, ES, IT, NL, BE, AT, and more
- Monitor mode — named Key-Value store of seen IDs; first run seeds silently, later runs emit only new listings
- Discord & Telegram — photo embeds with price, brand, size, condition, seller
- JSON API path — no item-page HTML, no Playwright
- Proxy-ready — Apify Residential recommended (DataDome)
Input parameters
| Parameter | Type | Default | Description |
|---|---|---|---|
startUrls | Array | — | Vinted /catalog?... search URLs |
searchTerms | Array | — | Keywords resolved on domain |
domain | String | fr | Default TLD for keywords (fr, de, co.uk, …) |
maxItems | Integer | 50 | Scrape cap, or new-listing cap in monitor mode |
order | String | newest_first | Catalog sort |
minPrice / maxPrice | Number | — | Optional price overlay |
monitorMode | Boolean | false | Delta tracking + alerts |
checkInterval | Integer | 0 | 0 = one cycle (Scheduler). 30–600 = live poll |
monitorStoreName | String | vinted-monitor-state | Named store for seen IDs |
emitExisting | Boolean | false | Also write the seed snapshot (no alerts) |
discordWebhook | String | — | Discord webhook URL |
telegramToken / telegramChatId | String | — | Telegram bot alerts |
proxyConfiguration | Object | Residential | Apify Proxy settings |
Input example
{"startUrls": [{ "url": "https://www.vinted.fr/catalog?search_text=nike+dunk&order=newest_first&price_to=80" }],"searchTerms": ["stanley cup"],"domain": "fr","maxItems": 40,"order": "newest_first","monitorMode": false,"proxyConfiguration": {"useApifyProxy": true,"apifyProxyGroups": ["RESIDENTIAL"]}}
Monitor example (Scheduler)
{"startUrls": [{ "url": "https://www.vinted.de/catalog?search_text=carhartt&order=newest_first" }],"domain": "de","maxItems": 30,"monitorMode": true,"checkInterval": 0,"discordWebhook": "https://discord.com/api/webhooks/...","proxyConfiguration": {"useApifyProxy": true,"apifyProxyGroups": ["RESIDENTIAL"],"apifyProxyCountry": "DE"}}
Output
Each dataset item is one catalog listing.
| Field | Description |
|---|---|
itemId | Numeric listing ID |
title | Listing title |
url | Item URL |
domain / countryCode | Market TLD and ISO country |
price / currency | Asking price |
totalPrice | Price with buyer protection when present |
brand / size / condition | Catalog card fields |
favouriteCount | Favourite count |
photoUrl / photoUrls | Primary image and extra photos |
sellerId / sellerUsername / sellerProfileUrl | Public seller fields |
sellerRating | Feedback reputation when on the card |
isNew | true when monitor mode emitted an unseen item |
createdAt / scrapedAt | Listing time when exposed, plus scrape UTC |
Output example
{"itemId": "9195032343","title": "Nike Dunk Low","url": "https://www.vinted.fr/items/9195032343-nike-dunk-low","domain": "fr","countryCode": "FR","price": 45.0,"currency": "EUR","totalPrice": 47.4,"brand": "Nike","size": "42","condition": "Very good","favouriteCount": 3,"photoUrl": "https://images1.vinted.net/tc/example.jpeg","sellerId": "57853971","sellerUsername": "example_shop","sellerProfileUrl": "https://www.vinted.fr/member/57853971-example_shop","isNew": true,"scrapedAt": "2026-08-28T00:40:00Z"}
Use cases
- Reseller sniping — Discord alerts on newest-first searches with a price cap
- Brand price boards — scrape Nike / Carhartt / Sezane catalogs by market
- Cross-border sourcing — same keyword on
.frand.dein one run - Scheduled watches — Apify Scheduler + named KV so IDs survive across runs
- MCP / API export — JSON dataset into Sheets, n8n, or a custom bot
Integration examples
Node.js
import { ApifyClient } from 'apify-client';const client = new ApifyClient({ token: process.env.APIFY_TOKEN });const run = await client.actor('crawloop/vinted-monitor').call({startUrls: [{ url: 'https://www.vinted.fr/catalog?search_text=nike&order=newest_first' }],maxItems: 40,monitorMode: false,proxyConfiguration: {useApifyProxy: true,apifyProxyGroups: ['RESIDENTIAL'],apifyProxyCountry: 'FR',},});const { items } = await client.dataset(run.defaultDatasetId).listItems();console.log(items.slice(0, 5));
Python
from apify_client import ApifyClientclient = ApifyClient(token)run = client.actor("crawloop/vinted-monitor").call(run_input={"startUrls": [{"url": "https://www.vinted.fr/catalog?search_text=nike&order=newest_first"}],"maxItems": 40,"monitorMode": False,"proxyConfiguration": {"useApifyProxy": True,"apifyProxyGroups": ["RESIDENTIAL"],"apifyProxyCountry": "FR",},})items = list(client.dataset(run["defaultDatasetId"]).iterate_items())print(len(items), items[:3])
cURL
curl "https://api.apify.com/v2/acts/crawloop~vinted-monitor/runs?token=$APIFY_TOKEN" \-H "Content-Type: application/json" \-d '{"startUrls": [{"url": "https://www.vinted.fr/catalog?search_text=nike&order=newest_first"}],"maxItems": 40,"monitorMode": false,"proxyConfiguration": {"useApifyProxy": true,"apifyProxyGroups": ["RESIDENTIAL"],"apifyProxyCountry": "FR"}}'
MCP and AI assistants
Use this Actor from AI tools via Apify MCP. Connect your Apify account, then call crawloop/vinted-monitor.
Example prompts:
- "Run Vinted Monitor for Nike Dunk on vinted.fr, max 30 listings, and return title, price, size, url"
- "Scrape Vinted catalog URLs for Carhartt under 40 EUR and summarize the cheapest 10"
- "Chain Vinted Monitor then Vinted Seller Scraper: take sellerProfileUrl from new listings and pull wardrobe plus reviews"
Suite next step
When a new listing looks interesting, run Vinted Seller Scraper on that member URL for wardrobe, reputation, and buyer reviews. For completed-sale comps, use eBay Sold Listings Scraper.
Related Actors
| Actor | What it covers |
|---|---|
| Vinted Monitor ◄── you are here | Vinted catalog scrape + new-listing alerts |
| Vinted Seller Scraper | Seller profile, wardrobe, reviews |
| Kleinanzeigen Scraper | German classifieds + monitor alerts |
| Marktplaats Scraper | Dutch classifieds marketplace |
| eBay Sold Listings Scraper | eBay completed sales / sold comps |
FAQ
How do I copy filters from Vinted?
Open a catalog search in the browser, apply brand / size / category / price, copy the /catalog?... URL, and paste it into Start URLs. Pretty category paths without catalog are skipped.
How does monitor mode work?
With monitorMode: true, listing IDs are stored in the named Key-Value store (vinted-monitor-state by default). The first run seeds IDs and writes nothing (unless emitExisting is on). Later scheduled runs emit only unseen listings and send Discord/Telegram alerts. After several consecutive already-seen cards on a newest-first page, pagination stops.
Should I use a live poll or the Scheduler?
Prefer Apify Scheduler every 2–5 minutes with checkInterval: 0. That keeps seen IDs in the named store and avoids a 24/7 container. Set checkInterval to 30–600 only when you need one long-running process.
Do I need residential proxies?
Yes for cloud runs. Vinted DataDome typically blocks datacenter IPs after one or two requests. Match apifyProxyCountry to the market (FR, DE, GB, …).
Does it collect seller emails or phone numbers?
No. Seller output is public catalog fields only: id, username, profile URL, and rating when present on the card.
How do I check a seller after an alert?
Copy sellerProfileUrl from the listing row and run Vinted Seller Scraper for wardrobe, reputation, and reviews.
Can I scrape 1,000+ listings?
Yes. Raise maxItems (up to 2,000) and use residential proxies. The Actor paginates /api/v2/catalog/items until the cap or the last page.
Does it export to JSON / CSV / API?
Yes. Results go to the Apify dataset. Download JSON, CSV, or Excel from the run, or connect webhooks and integrations.