GOAT Sneaker Price Scraper avatar

GOAT Sneaker Price Scraper

Pricing

from $1.00 / 1,000 results

Go to Apify Store
GOAT Sneaker Price Scraper

GOAT Sneaker Price Scraper

Scrapes sneaker listings and size-by-size pricing from GOAT.com — lowest price, instant ship, last sold, retail price, release date, and more. No API key required.

Pricing

from $1.00 / 1,000 results

Rating

0.0

(0)

Developer

COSENT GROUP

COSENT GROUP

Maintained by Community

Actor stats

0

Bookmarked

2

Total users

1

Monthly active users

5 days ago

Last modified

Categories

Share

Extract sneaker listings and pricing from GOAT.com — the world's largest authenticated sneaker marketplace. Search by keyword, brand, gender, and price range. Filter for in-stock or under-retail deals. Export to JSON, CSV, or Excel.

No GOAT account or API key required.

What it scrapes

Each listing includes:

FieldDescription
titleFull sneaker name including colorway (e.g. Air Jordan 1 Retro High OG 'Chicago')
brandBrand name (Nike, Adidas, New Balance, etc.)
silhouetteShoe model / silhouette line
gendermen / women / youth
releaseDateOriginal release date (YYYY-MM-DD)
retailPriceCentsOriginal retail price in cents
lowestAskCentsCurrent lowest ask price in cents
instantShipCentsLowest instant-ship price in cents
inStockWhether any size is currently listed
underRetailWhether the lowest ask is below retail
pictureUrlProduct image URL
urlDirect link to the product page on GOAT
scrapedAtISO timestamp of when the record was collected

Note: All prices are in cents. Divide by 100 to get dollars (e.g. 20500$205.00).

Use cases

  • Deal hunting — filter underRetailOnly: true to find sneakers priced below retail
  • Price tracking — schedule daily runs to monitor a keyword or brand over time
  • Market research — compare release date vs. current resale price across silhouettes
  • Inventory checks — use inStockOnly: true to see what's actually available to buy

Input

ParameterTypeDefaultDescription
keywordsString""Search term (e.g. "Air Jordan 1", "Yeezy 350 V2")
brandsArray[]Filter by brand. Options: Nike, Jordan, Adidas, New Balance, Asics, Converse, Vans, Puma, Reebok, Salomon, etc.
genderString"" (All)men, women, youth, or empty for all
minPriceCentsInteger0Minimum lowest-ask price in cents. 0 = no filter
maxPriceCentsInteger0Maximum lowest-ask price in cents. 0 = no filter
inStockOnlyBooleanfalseOnly return sneakers with active listings
underRetailOnlyBooleanfalseOnly return sneakers priced below original retail
sortTypeInteger11 = Most Popular · 2 = Lowest Price · 3 = Highest Price · 4 = Newest Release · 5 = Most Recent
maxResultsInteger100Max listings to return. 0 = no limit

Example inputs

Find under-retail Air Jordan 1s, cheapest first:

{
"keywords": "Air Jordan 1",
"underRetailOnly": true,
"sortType": 2,
"maxResults": 50
}

Browse all New Balance releases from newest to oldest:

{
"brands": ["New Balance"],
"sortType": 4,
"maxResults": 200
}

Find women's sneakers under $150:

{
"gender": "women",
"maxPriceCents": 15000,
"inStockOnly": true,
"sortType": 2
}

Output sample

{
"id": "447905",
"slug": "air-jordan-1-retro-high-og-chicago-lost-found-dz5485-612",
"title": "Air Jordan 1 Retro High OG 'Chicago Lost & Found'",
"brand": "Air Jordan",
"silhouette": "Air Jordan 1 Retro High OG",
"gender": "men",
"releaseDate": "2022-11-19",
"retailPriceCents": 18000,
"lowestAskCents": 20500,
"instantShipCents": 22000,
"inStock": true,
"underRetail": false,
"pictureUrl": "https://image.goat.com/750/attachments/product_template_pictures/images/...",
"url": "https://www.goat.com/sneakers/air-jordan-1-retro-high-og-chicago-lost-found-dz5485-612",
"scrapedAt": "2026-08-18T05:50:56.000Z"
}

Notes

  • Results match what you'd see on GOAT's website — same ranking, filters, and availability
  • GOAT shows ~36 listings per page; the scraper pages automatically until maxResults is reached
  • Scheduling a run daily or weekly is the best way to track price trends over time