Vinted Monitor — New Listings, Prices & Discord Alerts avatar

Vinted Monitor — New Listings, Prices & Discord Alerts

Pricing

from $1.49 / 1,000 listings

Go to Apify Store
Vinted Monitor — New Listings, Prices & Discord Alerts

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

Andrej Kiva

Maintained by Community

Actor stats

0

Bookmarked

2

Total users

1

Monthly active users

4 days ago

Last modified

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 MonitorVinted Seller Scraper
Vinted Monitor ◄── you are hereVinted 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, .pl catalog 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

ParameterTypeDefaultDescription
startUrlsArrayVinted /catalog?... search URLs
searchTermsArrayKeywords resolved on domain
domainStringfrDefault TLD for keywords (fr, de, co.uk, …)
maxItemsInteger50Scrape cap, or new-listing cap in monitor mode
orderStringnewest_firstCatalog sort
minPrice / maxPriceNumberOptional price overlay
monitorModeBooleanfalseDelta tracking + alerts
checkIntervalInteger00 = one cycle (Scheduler). 30–600 = live poll
monitorStoreNameStringvinted-monitor-stateNamed store for seen IDs
emitExistingBooleanfalseAlso write the seed snapshot (no alerts)
discordWebhookStringDiscord webhook URL
telegramToken / telegramChatIdStringTelegram bot alerts
proxyConfigurationObjectResidentialApify 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.

FieldDescription
itemIdNumeric listing ID
titleListing title
urlItem URL
domain / countryCodeMarket TLD and ISO country
price / currencyAsking price
totalPricePrice with buyer protection when present
brand / size / conditionCatalog card fields
favouriteCountFavourite count
photoUrl / photoUrlsPrimary image and extra photos
sellerId / sellerUsername / sellerProfileUrlPublic seller fields
sellerRatingFeedback reputation when on the card
isNewtrue when monitor mode emitted an unseen item
createdAt / scrapedAtListing 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 .fr and .de in 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 ApifyClient
client = 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.

ActorWhat it covers
Vinted Monitor ◄── you are hereVinted catalog scrape + new-listing alerts
Vinted Seller ScraperSeller profile, wardrobe, reviews
Kleinanzeigen ScraperGerman classifieds + monitor alerts
Marktplaats ScraperDutch classifieds marketplace
eBay Sold Listings ScrapereBay 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.