# Compare Vinted Prices Across Countries

**Use case:** 

Compare Vinted prices for the same item across Germany, France, and Spain in one run. Spot cross-border price gaps for resale arbitrage. Export to CSV or JSON.

## Input

```json
{
  "searchText": "nike air max 90",
  "markets": [
    "www.vinted.de",
    "www.vinted.fr",
    "www.vinted.es"
  ],
  "order": "price_low_to_high",
  "maxItemsPerMarket": 100
}
```

## 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.