# Vinted Search Scraper + New Listing Monitor (`mojocakes/vinted-search-monitor`) Actor

Search Vinted listings on any Vinted domain (UK, DE, FR, US…) with price filters and sorting — or run in monitor mode to get only listings posted since your last run. Perfect for deal alerts, resale arbitrage, and price research.

- **URL**: https://apify.com/mojocakes/vinted-search-monitor.md
- **Developed by:** [James Cook](https://apify.com/mojocakes) (community)
- **Categories:** E-commerce, Automation, Integrations
- **Stats:** 2 total users, 1 monthly users, 100.0% runs succeeded, 0 bookmarks
- **User rating**: No ratings yet

## Pricing

from $2.50 / 1,000 listings

This Actor is paid per event and usage. You are charged both the fixed price for specific events and for Apify platform usage.

Learn more: https://docs.apify.com/actors/running/actors-in-store.md#pay-per-event

## What's an Apify Actor?

Actors are web data automations that power AI and operations. They run on the Apify platform to scrape websites, process data, connect APIs, and automate workflows.
In Batch mode, an Actor accepts a well-defined JSON input, performs an action which can take anything from a few seconds to a few hours,
and optionally produces a well-defined JSON output, datasets with results, or files in key-value store.
In Standby mode, an Actor provides a web server which can be used as a website, API, or an MCP server.
Actors are written with capital "A".

## How to integrate an Actor?

If asked about integration, you help developers integrate Actors into their projects.
You adapt to their stack and deliver integrations that are safe, well-documented, and production-ready.
The best way to integrate Actors is as follows.

- **AI agents and MCP clients** — the [Apify MCP server](https://docs.apify.com/integrations/mcp.md) at `https://mcp.apify.com` (remote, streamable HTTP, OAuth on first use).
- **Agentic workflows and local Actor development** — [Agent Skills](https://apify.com/.well-known/agent-skills/index.json) with the [Apify CLI](https://docs.apify.com/cli/docs.md): `npm install -g apify-cli`, then `apify login`.
- **JavaScript/TypeScript projects** — the official [JS/TS client](https://docs.apify.com/api/client/js/docs.md): `npm install apify-client`.
- **Python projects** — the official [Python client](https://docs.apify.com/api/client/python/docs.md): `pip install apify-client`.
- **Any other language** — the [REST API](https://docs.apify.com/api/v2.md).

For usage examples, see the [API](#api) section below.

For more details, see Apify documentation as [Markdown index](https://docs.apify.com/llms.txt) and [Markdown full-text](https://docs.apify.com/llms-full.txt).

# README

## Vinted Search Scraper + New Listing Monitor

Search **Vinted listings on any Vinted marketplace** (UK, US, Germany, France, and 19 more) and export clean JSON — or flip on **monitor mode** and get **only the listings posted since your last run**. Built for deal alerts, resale arbitrage, price research, and market analysis.

### What it does

- Runs any number of search queries against your chosen Vinted domain
- Price filters (min/max) and all Vinted sort orders
- **Monitor mode:** remembers the newest listing per query — schedule the actor every 10–60 minutes and receive just the fresh finds, ready for Slack/email/webhook alerts
- Clean, stable output: price (with and without buyer fees), brand, size, condition, favourites, views, photo, listing URL
- Works across 23 Vinted country domains with correct currency

### Output example

```json
{
  "searchQuery": "north face puffer jacket",
  "domain": "www.vinted.co.uk",
  "listingId": 9735627717,
  "title": "North Face Puffer",
  "url": "https://www.vinted.co.uk/items/9735627717-north-face-puffer",
  "priceAmount": 17.79,
  "currency": "GBP",
  "totalPriceWithFees": 19.46,
  "brand": "The North Face",
  "size": "S / UK 8-10",
  "condition": "Good",
  "favourites": 4,
  "views": 63,
  "photoUrl": "https://images1.vinted.net/...",
  "approxListedAt": "2026-08-23T18:40:12.000Z"
}
```

### Typical uses

- **Deal sniping** — monitor `levi 501 w32` under £20 and be first to message the seller
- **Resale arbitrage** — track under-priced listings for brands you flip
- **Price research** — what does a used Patagonia fleece actually sell for, by size and condition?
- **Market analysis** — supply volume and pricing by brand across countries

### Monitor mode

Enable `monitorMode` and run the actor on a schedule. The first run sets a per-query baseline; every later run returns only listings that are new since then. Listing IDs are monotonic, so nothing is missed and nothing repeats. Combine with an Apify schedule + integration (Slack, email, webhook) for hands-off alerts.

### Fair use

This actor collects only publicly visible listing data. Seller details are off by default and limited to the public login name when enabled. No login-walled data. Respect Vinted's terms and local law for your use case.

# Actor input Schema

## `searchQueries` (type: `array`):

One or more search terms, exactly as you would type them into Vinted search (e.g. `north face puffer`, `levi 501 W32`).

## `domain` (type: `string`):

Which Vinted site to search. Determines country, language and currency.

## `maxItemsPerQuery` (type: `integer`):

Upper limit of listings to return per search query in this run.

## `order` (type: `string`):

How Vinted sorts the results. Monitor mode always uses `newest_first`.

## `priceFrom` (type: `integer`):

Only listings priced at or above this amount (in the domain's currency). Leave empty for no minimum.

## `priceTo` (type: `integer`):

Only listings priced at or below this amount (in the domain's currency). Leave empty for no maximum.

## `monitorMode` (type: `boolean`):

When enabled, the actor remembers the newest listing it has seen per query (per Task) and outputs only listings posted after that. Schedule it every 10–60 minutes for deal alerts on saved searches. The first run sets the baseline.

## `includeSellerInfo` (type: `boolean`):

Include the seller's public login name and profile URL with each listing. Off by default.

## `proxyConfiguration` (type: `object`):

Proxy settings. Residential proxy is strongly recommended — Vinted blocks most datacenter IP ranges.

## Actor input object example

```json
{
  "searchQueries": [
    "north face puffer jacket"
  ],
  "domain": "www.vinted.co.uk",
  "maxItemsPerQuery": 96,
  "order": "newest_first",
  "monitorMode": false,
  "includeSellerInfo": false,
  "proxyConfiguration": {
    "useApifyProxy": true,
    "apifyProxyGroups": [
      "RESIDENTIAL"
    ]
  }
}
```

# Actor output Schema

## `listings` (type: `string`):

Vinted listings found by this run (or only new listings, in monitor mode).

# API

You can run this Actor programmatically using our API. Below are code examples in JavaScript, Python, and CLI, as well as the OpenAPI specification and MCP server setup.

## JavaScript example

```javascript
import { ApifyClient } from 'apify-client';

// Initialize the ApifyClient with your Apify API token
// Replace the '<YOUR_API_TOKEN>' with your token
const client = new ApifyClient({
    token: '<YOUR_API_TOKEN>',
});

// Prepare Actor input
const input = {
    "searchQueries": [
        "north face puffer jacket"
    ]
};

// Run the Actor and wait for it to finish
const run = await client.actor("mojocakes/vinted-search-monitor").call(input);

// Fetch and print Actor results from the run's dataset (if any)
console.log('Results from dataset');
console.log(`💾 Check your data here: https://console.apify.com/storage/datasets/${run.defaultDatasetId}`);
const { items } = await client.dataset(run.defaultDatasetId).listItems();
items.forEach((item) => {
    console.dir(item);
});

// 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/js/docs

```

## Python example

```python
from apify_client import ApifyClient

# Initialize the ApifyClient with your Apify API token
# Replace '<YOUR_API_TOKEN>' with your token.
client = ApifyClient("<YOUR_API_TOKEN>")

# Prepare the Actor input
run_input = { "searchQueries": ["north face puffer jacket"] }

# Run the Actor and wait for it to finish
run = client.actor("mojocakes/vinted-search-monitor").call(run_input=run_input)

# Fetch and print Actor results from the run's dataset (if there are any)
print(f"💾 Check your data here: https://console.apify.com/storage/datasets/{run.default_dataset_id}")
for item in client.dataset(run.default_dataset_id).iterate_items():
    print(item)

# 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/python/docs/quick-start

```

## CLI example

```bash
echo '{
  "searchQueries": [
    "north face puffer jacket"
  ]
}' |
apify call mojocakes/vinted-search-monitor --silent --output-dataset

```

## MCP server setup

```json
{
    "mcpServers": {
        "apify": {
            "type": "http",
            "url": "https://mcp.apify.com/?tools=fetch-actor-details,mojocakes/vinted-search-monitor"
        }
    }
}

```

The hosted server signs you in with OAuth on first connect, so no API token belongs in this config. Clients without OAuth support can send an `Authorization: Bearer <APIFY_API_TOKEN>` header instead, using a token from API & Integrations in Apify Console (https://console.apify.com/settings/integrations).

## OpenAPI specification

Download the OpenAPI definition: https://api.apify.com/v2/actors/l7T2yCxPEk22xJwrd/builds/sk0YqqCyZk6SH3ENA/openapi.json
