# Vinted Keyword Search (`ryyos/vinted-keyword-search-scraper`) Actor

\[$1.5/1000] Search Vinted by free-text keyword and get every result opened in full: photos, price, brand, size, condition, description, and seller profile.

- **URL**: https://apify.com/ryyos/vinted-keyword-search-scraper.md
- **Developed by:** [Rio Dwi Saputra](https://apify.com/ryyos) (community)
- **Categories:** E-commerce, Automation, Developer tools
- **Stats:** 1 total users, 0 monthly users, 0.0% runs succeeded, 0 bookmarks
- **User rating**: No ratings yet

## Pricing

from $1.50 / 1,000 results

This Actor is paid per event. You are not charged for the Apify platform usage, but only a fixed price for specific events.

Learn more: https://docs.apify.com/platform/actors/running/actors-in-store#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

Search the entire [Vinted](https://www.vinted.com) marketplace by free-text keyword and get every result opened in full, no login, no browser automation, and no proxies required. Give it a query like "levi jacket" or "nike air max" and it opens every matching listing for the full picture: every photo, price, brand, size, condition, material, color, description, and the seller's username, feedback count, and reputation score. Run it on-demand, on a schedule, or hook it into your own pipeline through the Apify API and integrations.

### Why use Vinted Keyword Search Scraper?

- **Product and brand monitoring** - track every new secondhand listing matching a specific product, model, or brand.
- **Price benchmarking** - see the real spread of asking prices for a search term right now.
- **Sourcing and resale research** - surface underpriced matches across the whole site, not just one category.
- **Seller due diligence** - check a seller's feedback count and reputation before recommending or partnering with them.

This is a companion Actor to [Vinted Catalog Scraper](https://apify.com/store), which browses by category instead of free-text keyword - use whichever fits how you want to find listings.

### How to use Vinted Keyword Search Scraper

1. Open the Actor's **Input** tab.
2. Enter a **Search query**, e.g. `levi jacket`.
3. Optionally set a sort **order**, a **price range**, and the maximum number of results to open.
4. Click **Start** and watch results appear in the **Output** tab as they're opened.
5. Export the dataset as JSON, CSV, Excel, or HTML, or pull it via the Apify API.

### Input

| Field | Type | Description |
| --- | --- | --- |
| `query` | string | Required. Free-text keyword to search Vinted for. |
| `order` | string | `relevance` (default), `newest_first`, `price_low_to_high`, or `price_high_to_low`. |
| `priceFrom` / `priceTo` | integer | Optional price range filter. |
| `maxResults` | integer | Search results to fully open (default 100). |

### Output

Each dataset item is one fully-opened search result:

```json
{
  "itemId": 9696083008,
  "itemUrl": "https://www.vinted.com/items/9696083008-womens-yoki-jacket-sz-m",
  "title": "Women's YOKI Jacket Sz M",
  "priceAmount": "10.0",
  "priceCurrency": "USD",
  "brand": "Yoki",
  "size": "M / US 8-10",
  "condition": "Very good",
  "color": "Green",
  "images": ["https://images1.vinted.net/...", "..."],
  "imageCount": 4,
  "favouriteCount": 0,
  "sellerUsername": "ktonry25",
  "sellerFeedbackCount": 0,
  "categoryBreadcrumbs": ["Women", "Clothing", "Outerwear", "Coats", "Parkas", "Yoki Parkas"],
  "searchQuery": "yoki jacket"
}
```

You can download the dataset in various formats such as JSON, HTML, CSV, or Excel.

#### Data table

| Field | Description |
| --- | --- |
| `title`, `priceAmount`, `priceCurrency` | Listing title and price |
| `brand`, `size`, `condition`, `material`, `color` | Structured item attributes |
| `description` | Full seller-written description |
| `images` / `imageCount` | Every photo on the listing, full resolution |
| `favouriteCount`, `viewCount` | Engagement signals |
| `sellerId`, `sellerUsername`, `sellerFeedbackCount`, `sellerFeedbackReputation`, `sellerIsBusiness` | Seller profile |
| `isReserved`, `isClosed`, `isHidden`, `isDraft` | Listing availability status |
| `categoryBreadcrumbs` | Full category path |
| `searchQuery` | The query that produced this result |

### How much does it cost to scrape Vinted search results?

This Actor is priced per 1,000 results at a rate shown on the Actor's page - see the **Pricing** tab for the current rate and Apify's free monthly usage credits.

### Tips

- Narrow `priceFrom`/`priceTo` and lower `maxResults` to control run cost and duration.
- More specific queries (brand plus model, e.g. "levi 501") return a cleaner match set than single generic words.
- Want to browse a whole category instead of searching? Use the companion [Vinted Catalog Scraper](https://apify.com/store) Actor.

### FAQ and support

This Actor only reads publicly accessible Vinted pages - it does not log in, register accounts, or perform any purchase or checkout action. Vinted's page structure can change over time; if you notice missing fields or empty runs, please open an issue on the Actor's Issues tab. Need a custom variant (extra filters, more marketplaces, deeper crawling)? Reach out through Apify for a custom solution.

# Actor input Schema

## `query` (type: `string`):

Free-text keyword to search Vinted for, e.g. 'levi jacket' or 'nike air max'.

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

How Vinted should sort results before they are opened.

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

Only include results priced at or above this amount. Leave empty for no minimum.

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

Only include results priced at or below this amount. Leave empty for no maximum.

## `maxResults` (type: `integer`):

Maximum number of search results to fully open.

## Actor input object example

```json
{
  "order": "relevance",
  "maxResults": 100
}
```

# Actor output Schema

## `results` (type: `string`):

No description

## `runInfo` (type: `string`):

No description

# 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 = {};

// Run the Actor and wait for it to finish
const run = await client.actor("ryyos/vinted-keyword-search-scraper").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 = {}

# Run the Actor and wait for it to finish
run = client.actor("ryyos/vinted-keyword-search-scraper").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 '{}' |
apify call ryyos/vinted-keyword-search-scraper --silent --output-dataset

```

## MCP server setup

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

```

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/LyFzdJu2HATEv4Yr8/builds/tu0z8yaRR3K9Vyduc/openapi.json
