# Scrape streetwear on StockX

**Use case:** 

Extract streetwear listings and prices from StockX. Structured resale market data. Pay per result.

## Input

```json
{
  "mode": "search",
  "searchQuery": "supreme",
  "brand": "jordan",
  "category": "sneakers",
  "productUrls": [],
  "startUrls": [],
  "currency": "USD",
  "country": "US",
  "sortBy": "featured",
  "fetchDetails": false,
  "newOnly": false,
  "maxResults": 5,
  "maxPages": 5
}
```

## Output

```json
{
  "title": {
    "label": "Title",
    "format": "text"
  },
  "brand": {
    "label": "Brand",
    "format": "text"
  },
  "lowestAsk": {
    "label": "Lowest Ask",
    "format": "number"
  },
  "highestBid": {
    "label": "Highest Bid",
    "format": "number"
  },
  "lastSale": {
    "label": "Last Sale",
    "format": "number"
  },
  "productUrl": {
    "label": "URL",
    "format": "link"
  }
}
```

## About this Actor

This example demonstrates how to use [StockX Scraper](https://apify.com/unfenced-group/stockx-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/unfenced-group/stockx-scraper) to learn more, explore other use cases, and run it yourself.