GOAT Sneaker Price Scraper
Pricing
from $1.00 / 1,000 results
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
Maintained by CommunityActor 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:
| Field | Description |
|---|---|
title | Full sneaker name including colorway (e.g. Air Jordan 1 Retro High OG 'Chicago') |
brand | Brand name (Nike, Adidas, New Balance, etc.) |
silhouette | Shoe model / silhouette line |
gender | men / women / youth |
releaseDate | Original release date (YYYY-MM-DD) |
retailPriceCents | Original retail price in cents |
lowestAskCents | Current lowest ask price in cents |
instantShipCents | Lowest instant-ship price in cents |
inStock | Whether any size is currently listed |
underRetail | Whether the lowest ask is below retail |
pictureUrl | Product image URL |
url | Direct link to the product page on GOAT |
scrapedAt | ISO 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: trueto 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: trueto see what's actually available to buy
Input
| Parameter | Type | Default | Description |
|---|---|---|---|
keywords | String | "" | Search term (e.g. "Air Jordan 1", "Yeezy 350 V2") |
brands | Array | [] | Filter by brand. Options: Nike, Jordan, Adidas, New Balance, Asics, Converse, Vans, Puma, Reebok, Salomon, etc. |
gender | String | "" (All) | men, women, youth, or empty for all |
minPriceCents | Integer | 0 | Minimum lowest-ask price in cents. 0 = no filter |
maxPriceCents | Integer | 0 | Maximum lowest-ask price in cents. 0 = no filter |
inStockOnly | Boolean | false | Only return sneakers with active listings |
underRetailOnly | Boolean | false | Only return sneakers priced below original retail |
sortType | Integer | 1 | 1 = Most Popular · 2 = Lowest Price · 3 = Highest Price · 4 = Newest Release · 5 = Most Recent |
maxResults | Integer | 100 | Max 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
maxResultsis reached - Scheduling a run daily or weekly is the best way to track price trends over time