# Track Sneaker Resale Prices on GOAT

**Use case:** 

Track sneaker resale prices on GOAT: retail, resale lowest ask, instant buy-now, and computed premium per model. No API key. Export to CSV or JSON.

## Input

```json
{
  "searchText": "jordan 1",
  "inStockOnly": false,
  "maxItems": 200
}
```

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