# Scrape Vinted Listings by Keyword

**Use case:** 

Search Vinted by keyword and export every listing: price, brand, size, condition, favourites, and seller data. No API key, results to CSV, JSON, or Excel.

## Input

```json
{
  "searchText": "levi 501",
  "markets": [
    "www.vinted.com"
  ],
  "order": "relevance",
  "maxItemsPerMarket": 200
}
```

## Output

```json
{
  "title": {
    "label": "Title",
    "format": "text"
  },
  "price": {
    "label": "Price",
    "format": "number"
  },
  "currency": {
    "label": "Cur",
    "format": "text"
  },
  "total_price": {
    "label": "Total (+fee)",
    "format": "number"
  },
  "brand": {
    "label": "Brand",
    "format": "text"
  },
  "size": {
    "label": "Size",
    "format": "text"
  },
  "condition": {
    "label": "Condition",
    "format": "text"
  },
  "favourites": {
    "label": "Faves",
    "format": "number"
  },
  "views": {
    "label": "Views",
    "format": "number"
  },
  "seller_login": {
    "label": "Seller",
    "format": "text"
  },
  "seller_is_business": {
    "label": "Pro",
    "format": "boolean"
  },
  "market": {
    "label": "Market",
    "format": "text"
  },
  "url": {
    "label": "URL",
    "format": "link"
  }
}
```

## About this Actor

This example demonstrates how to use [Vinted Scraper — Listings, Prices & Seller Data](https://apify.com/ruslanzotkin/vinted-marketplace-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/ruslanzotkin/vinted-marketplace-scraper) to learn more, explore other use cases, and run it yourself.