Vinted Search Scraper avatar

Vinted Search Scraper

Pricing

from $0.30 / 1,000 listing saveds

Go to Apify Store
Vinted Search Scraper

Vinted Search Scraper

Scrape Vinted marketplace search listings by keyword, price, brand, catalog, and country.

Pricing

from $0.30 / 1,000 listing saveds

Rating

0.0

(0)

Developer

Hanna Nosova

Hanna Nosova

Maintained by Community

Actor stats

0

Bookmarked

10

Total users

6

Monthly active users

a day ago

Last modified

Share

Export Vinted marketplace search listings by keyword, price range, brand IDs, catalog IDs, country domain, and sort order.

Use this actor when you need a repeatable CSV, JSON, Excel, or API export of Vinted listings for resale research, price monitoring, inventory discovery, marketplace analytics, or AI-agent workflows.

At a glance

  • Input: Search text, marketplace domain, price filters, brand IDs, catalog IDs, sort order, page, and result limit.
  • Output: Listing IDs, titles, prices, currency, brand, size, status, listing URL, photos, seller fields, favorite/view counts, and scrape time.
  • Marketplace domains: Use a supported public marketplace domain such as www.vinted.fr, www.vinted.de, www.vinted.co.uk, or www.vinted.com. The default is www.vinted.fr; .com can be sparse for some searches.
  • Best for: Vinted listing exports, resale pricing research, saved-search monitoring, and marketplace automation.
  • No login required: Uses public listing search data.

Ready-to-run examples

Use these saved Store examples as starting points. Open any example to prefill the Actor input, then adjust URLs, keywords, limits, or filters for your own run.

Who is it for?

  • Resellers and vintage shops checking comparable Vinted listing prices before buying or listing inventory.
  • Marketplace analysts building repeatable Vinted search exports for demand, supply, or brand tracking.
  • Automation teams and AI agents that need structured public Vinted listings through Apify datasets, schedules, webhooks, API, or MCP.

What can it do?

  • Export Vinted search listings: Save listing titles, URLs, prices, currency, brands, sizes, status, and photos.
  • Track marketplace prices: Combine search text, price filters, and sort order for repeatable price snapshots.
  • Collect seller fields: Add seller IDs, logins, and profile URLs when available.
  • Filter by catalog or brand: Use Vinted IDs to narrow the search beyond text.
  • Use as a Vinted search API alternative: Run from the Apify UI, API, schedules, webhooks, or the official Apify MCP server.

Common workflows

  • Resale research: Compare listing prices for a brand, size, or item type.
  • Inventory discovery: Export public listings that match a niche or search term.
  • Price monitoring: Schedule daily runs and compare prices, favorites, and listing counts.
  • Seller research: Capture seller profile URLs for public seller context.
  • AI-agent analysis: Let an agent collect listing rows before summarizing demand and price bands.

Input example

{
"searchText": "nike sneakers",
"maxItems": 50,
"domain": "www.vinted.fr",
"priceMin": 10,
"priceMax": 80,
"brandIds": [],
"catalogIds": [],
"order": "newest_first",
"page": 1,
"perPage": 96,
"includeSeller": true
}

Output example

{
"id": "123456789",
"title": "Nike Air sneakers",
"priceAmount": 42,
"currency": "EUR",
"brandTitle": "Nike",
"sizeTitle": "42",
"status": "Very good",
"url": "https://www.vinted.com/items/123456789",
"photoUrls": ["https://images1.vinted.net/..."],
"sellerId": "987654",
"sellerLogin": "example_seller",
"sellerProfileUrl": "https://www.vinted.com/member/987654-example-seller",
"favoriteCount": 12,
"viewCount": 88,
"scrapedAt": "2026-07-03T10:00:00.000Z",
"searchText": "nike sneakers"
}

Input configuration

SettingJSON keyWhat to enter
Search textsearchTextVinted keyword or phrase.
Maximum itemsmaxItemsMaximum listing rows to save.
DomaindomainVinted marketplace domain to search.
Minimum pricepriceMinOptional lower price bound.
Maximum pricepriceMaxOptional upper price bound.
Brand IDsbrandIdsOptional Vinted brand IDs.
Catalog IDscatalogIdsOptional Vinted category/catalog IDs.
OrderorderSort order, such as newest first when supported.
Page and per-pagepage, perPagePagination controls.
Include sellerincludeSellerAdds public seller fields when available.
Resume checkpointresumeCheckpointOptional checkpoint copied from RUN_SUMMARY after a partial run; use it only with the same search text and domain.

Output fields

FieldDescription
id, title, url, pathListing identity and links.
priceAmount, currencyListing price and currency.
brandTitle, sizeTitle, statusListing attributes when Vinted exposes them.
photoUrlsPublic listing photo URLs.
sellerId, sellerLogin, sellerProfileUrlPublic seller fields when includeSeller is enabled and available.
favoriteCount, viewCountPublic engagement counters when available.
scrapedAt, searchTextScrape timestamp and original search text.
RUN_SUMMARYSaved in the default key-value store with saved-row count, page count, warnings, and a portable continuation checkpoint after a partial run.

Pricing

This Actor uses Apify pay-per-event pricing. It charges a one-time apify-actor-start event when a run starts and an apify-default-dataset-item event for each Vinted listing saved to the dataset.

For current rates, open the live Apify Pricing tab. The final price shown in Apify depends on your account plan and any custom agreement. Apify may also charge platform usage for compute, storage, proxies, or data transfer outside this Actor pricing.

Tips for best results

  • Use the Vinted domain for the country or marketplace you want.
  • Keep the first run small when testing brand IDs or catalog IDs.
  • Use price filters to reduce broad searches.
  • Turn on includeSeller only when seller fields matter.
  • Use the same query and filters for scheduled price monitoring.
  • If a run is marked partial, copy its RUN_SUMMARY.checkpoint into resumeCheckpoint and keep the same search text and domain.

Limits and caveats

  • The actor extracts public search listing data. It does not log in, message sellers, or purchase items.
  • Vinted domains, filters, and field availability vary by country.
  • Brand and catalog IDs must be Vinted IDs, not plain names.
  • Some counters or seller fields may be missing for individual listings.
  • A zero-row successful run means the requested public search had no currently returned listings. Challenge pages and malformed catalog responses fail with an actionable error instead of being reported as empty results.
  • The Actor does not ask for credentials, bypass access controls, or guarantee an exhaustive or stable rank order.

API usage

Node.js

import { ApifyClient } from 'apify-client';
const client = new ApifyClient({ token: process.env.APIFY_TOKEN });
const run = await client.actor('fetch_cat/vinted-search-scraper').call({
searchText: 'nike sneakers',
domain: 'www.vinted.fr',
maxItems: 50,
});
console.log(await client.dataset(run.defaultDatasetId).listItems());

Python

from apify_client import ApifyClient
client = ApifyClient("YOUR_APIFY_TOKEN")
run = client.actor("fetch_cat/vinted-search-scraper").call(run_input={
"searchText": "nike sneakers", "domain": "www.vinted.fr", "maxItems": 50
})
print(client.dataset(run["defaultDatasetId"]).list_items().items)

cURL

curl "https://api.apify.com/v2/acts/fetch_cat~vinted-search-scraper/runs?token=$APIFY_TOKEN" \
-H "Content-Type: application/json" \
-d '{
"searchText": "nike sneakers",
"domain": "www.vinted.fr",
"maxItems": 50,
"includeSeller": true
}'

MCP and AI agents

You can run this actor through the official Apify MCP server at https://mcp.apify.com.

For a focused single-actor tool, use:

https://mcp.apify.com?tools=fetch_cat/vinted-search-scraper

For Claude Code or another MCP-compatible client, add the focused server:

$claude mcp add --transport http apify-vinted-search "https://mcp.apify.com?tools=fetch_cat/vinted-search-scraper"

Equivalent JSON configuration:

{
"mcpServers": {
"apify-vinted-search": {
"url": "https://mcp.apify.com?tools=fetch_cat/vinted-search-scraper"
}
}
}

Example prompts: “Export up to 30 Nike sneaker listings from Vinted France” and “Compare the price range for this Vinted search on the UK and French marketplaces.”

Agent-friendly inputs are searchText, maxItems, domain, priceMin, priceMax, brandIds, catalogIds, order, page, perPage, and includeSeller.

FAQ

Does this require a Vinted login?
No. It exports public search listing data.

Can I monitor a Vinted search every day?
Yes. Use Apify schedules with the same input.

Can I export to CSV or Excel?
Yes. Download the Apify dataset as CSV, Excel, JSON, XML, RSS, or through the Dataset API.

Why did my run return zero items?
The domain, search, brand ID, catalog ID, price range, or page may not have matching public listings.

Support

If a run fails, returns no data, or a field looks wrong, open an issue from the Actor page.

Please include the Apify run ID or run URL, input JSON, one example public URL, query, or input item, what you expected, and what the dataset returned. Small reproducible inputs make parsing or site-layout issues much faster to fix.

Privacy and data handling

This Actor runs with Apify limited permissions and only processes data needed for the documented run. It uses search/listing inputs and public product, marketplace, or listing records to produce the output dataset and sends requests to public Vinted Search pages/endpoints; results are stored in Apify run storage for your account. FetchCat does not use your inputs or outputs for advertising, does not use them for model training, and does not retain them outside the Apify run except for transient support debugging when you explicitly share run details. You are responsible for using the Actor lawfully, respecting the target site's terms, and avoiding unnecessary personal or sensitive data in inputs.