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, orwww.vinted.com. The default iswww.vinted.fr;.comcan 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.
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"
}
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
includeSelleronly when seller fields matter. - Use the same query and filters for scheduled price monitoring.
- If a run is marked partial, copy its
RUN_SUMMARY.checkpointintoresumeCheckpointand 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.
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.