# Scrape Whatnot show listings & live prices

**Use case:** 

Scrape items for sale inside Whatnot live shows — title, live price and currency, auction vs buy-now, seller, and parent show.

## Input

```json
{
  "mode": "shows",
  "categories": [
    "trading_card_games"
  ],
  "startUrls": [
    "https://www.whatnot.com/user/topmtg"
  ],
  "sellers": [
    "topmtg",
    "001spades"
  ],
  "maxItems": 100,
  "includeListings": true,
  "country": "US",
  "proxyConfiguration": {
    "useApifyProxy": true,
    "apifyProxyGroups": [
      "RESIDENTIAL"
    ]
  },
  "maxRetries": 6,
  "debug": false
}
```

## Output

```json
{
  "title": {
    "label": "Title",
    "format": "string"
  },
  "price": {
    "label": "Price",
    "format": "number"
  },
  "currency": {
    "label": "Currency",
    "format": "string"
  },
  "isAuction": {
    "label": "Is auction",
    "format": "boolean"
  },
  "currentBid": {
    "label": "Current bid",
    "format": "number"
  },
  "listingStatus": {
    "label": "Listing status",
    "format": "string"
  },
  "sellerUsername": {
    "label": "Seller",
    "format": "string"
  },
  "showTitle": {
    "label": "Show title",
    "format": "string"
  },
  "url": {
    "label": "URL",
    "format": "string"
  }
}
```

## About this Actor

This example demonstrates how to use [Whatnot Scraper - Shows, Listings & Seller Intel](https://apify.com/webdatalabs/whatnot-marketplace-intelligence) with a specific input configuration. Visit the [Actor detail page](https://apify.com/webdatalabs/whatnot-marketplace-intelligence) to learn more, explore other use cases, and run it yourself.