# Find Sneakers Selling Above Retail on GOAT

**Use case:** 

Find sneakers trading above retail on GOAT. Get retail price, resale lowest ask, and premium for any search. Spot flips and dead stock. Export to CSV.

## Input

```json
{
  "searchText": "travis scott",
  "inStockOnly": false,
  "maxItems": 100
}
```

## Output

```json
{
  "title": {
    "label": "Product",
    "format": "text"
  },
  "brand": {
    "label": "Brand",
    "format": "text"
  },
  "retail_price": {
    "label": "Retail",
    "format": "number"
  },
  "resale_lowest": {
    "label": "Resale (ask)",
    "format": "number"
  },
  "instant_lowest": {
    "label": "Instant",
    "format": "number"
  },
  "premium": {
    "label": "Premium",
    "format": "number"
  },
  "premium_pct": {
    "label": "Premium %",
    "format": "number"
  },
  "currency": {
    "label": "Cur",
    "format": "text"
  },
  "under_retail": {
    "label": "Under retail",
    "format": "boolean"
  },
  "in_stock": {
    "label": "In stock",
    "format": "boolean"
  },
  "release_date": {
    "label": "Released",
    "format": "text"
  },
  "url": {
    "label": "URL",
    "format": "link"
  }
}
```

## About this Actor

This example demonstrates how to use [GOAT Scraper — Sneaker Resale Prices & Premiums](https://apify.com/ruslanzotkin/goat-resale-price-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/ruslanzotkin/goat-resale-price-scraper) to learn more, explore other use cases, and run it yourself.