# Find shoe deals on Vinted

**Use case:** 

Scrape second-hand shoe listings from Vinted. Filter by category, get structured resale data. Pay per result.

## Input

```json
{
  "searchQuery": "jordan",
  "countries": [
    "fr",
    "de",
    "nl",
    "it",
    "es"
  ],
  "maxResults": 5,
  "baseCurrency": "EUR",
  "sortBy": "relevance",
  "gender": "all",
  "category": "shoes",
  "includeListings": true,
  "dedupeAcrossMarkets": true,
  "fetchDetails": false,
  "sellThroughTracking": false,
  "missingRunsBeforeSold": 2,
  "emitActiveItems": true,
  "includeArbitrageSummary": true,
  "alertTopListings": 5
}
```

## Output

```json
{
  "_type": {
    "label": "Type",
    "format": "text"
  },
  "title": {
    "label": "Title",
    "format": "text"
  },
  "brand": {
    "label": "Brand",
    "format": "text"
  },
  "country": {
    "label": "Market",
    "format": "text"
  },
  "markets": {
    "label": "Markets",
    "format": "array"
  },
  "itemPrice": {
    "label": "Price",
    "format": "number"
  },
  "currency": {
    "label": "Currency",
    "format": "text"
  },
  "itemPriceBase": {
    "label": "Price (base)",
    "format": "number"
  },
  "buyerPrice": {
    "label": "Buyer pays",
    "format": "number"
  },
  "favouriteCount": {
    "label": "Favourites",
    "format": "number"
  },
  "url": {
    "label": "URL",
    "format": "link"
  }
}
```

## About this Actor

This example demonstrates how to use [Vinted Demand & Sell-Through Scraper](https://apify.com/unfenced-group/vinted-arbitrage-scanner) with a specific input configuration. Visit the [Actor detail page](https://apify.com/unfenced-group/vinted-arbitrage-scanner) to learn more, explore other use cases, and run it yourself.