GOAT Product Scraper
Pricing
from $20.00 / 1,000 results
GOAT Product Scraper
Look up GOAT sneakers by slug or URL and get the full product detail plus per-size availability and lowest ask.
Pricing
from $20.00 / 1,000 results
Rating
0.0
(0)
Developer
Farhan Febrian Nauval
Maintained by CommunityActor stats
0
Bookmarked
2
Total users
1
Monthly active users
4 days ago
Last modified
Categories
Share
Look up any sneaker on GOAT by its product slug or URL and get the full product detail — identity, retail price, images, release date — plus a complete per-size availability list with the lowest ask, instant-ship price, last sold price, and stock status for every size.
Why use this actor
- Per-size availability — every size comes through with its lowest ask, instant-ship price, last sold price, and whether it's in stock.
- Full product identity — name, SKU, brand, colorway, designer, silhouette, release date, and retail price in one record.
- Lowest ask at a glance — a single lowest-price summary plus the full size-by-size breakdown.
- Accepts slugs or URLs — paste a
goat.com/sneakers/<slug>link or just the slug. - Per-country pricing — pick a ship-to market (US, UK, Canada, Japan, and more) and get the sizes, stock, and lowest asks that actually apply there.
- No account, no API key — works straight from public product pages.
- Stable JSON output — same field names every run, ready for spreadsheets, databases, or pipelines.
- Automatic retries — each product is retried with a fresh identity if a request is refused.
How it works
- You provide one or more GOAT product slugs or full
goat.com/sneakers/<slug>URLs, and optionally a ship-to country. - The actor fetches each product and reads its full detail — name, SKU, brand, colorway, release date, retail price, and images.
- It then pulls the per-size availability list for your chosen country — lowest ask, instant-ship price, last sold price, and stock status for each size.
- Each product is saved as one
PRODUCTrecord; products that can't be found return a record with anerrorfield instead of being skipped. - Everything lands in your dataset, exportable as JSON, CSV, or Excel.
You don't need to manage any browsers or scrapers.
Input
{"slugs": ["air-jordan-jordan-12-retro-bloodline-ct8013-003","https://www.goat.com/sneakers/air-jordan-3-retro-bin23-io7744-600"],"country": "US","maxConcurrency": 4,"maxRequestRetries": 5,"proxyConfiguration": { "useApifyProxy": true, "apifyProxyGroups": ["RESIDENTIAL"] }}
| Field | Type | Description |
|---|---|---|
slugs | array | Required. GOAT product slugs or full goat.com/sneakers/<slug> URLs (one per entry). |
country | string | Ship-to market for size availability and lowest asks. GOAT shows different in-stock sizes and lowest asks per market, so the same product can come back cheaper or with different stock in another country. One of US, GB, CA, AU, DE, FR, JP, HK. Default US. |
maxConcurrency | integer | Number of products fetched in parallel. Default 4. |
maxRequestRetries | integer | Retries per product before giving up. Default 5. |
proxyConfiguration | object | Apify Proxy or a custom proxy list. RESIDENTIAL recommended for consistent pricing and availability. |
Output
One PRODUCT record per slug. The sizes array is truncated below for readability:
{"recordType": "PRODUCT","productTemplateId": 1686126,"country": "US","slug": "air-jordan-jordan-12-retro-bloodline-ct8013-003","name": "Air Jordan 12 Retro 'Bloodline'","nickname": "Bloodline","sku": "CT8013 003","brand": "Air Jordan","colorway": "Black","designer": "Tinker Hatfield","silhouette": "Air Jordan 12","category": ["Lifestyle"],"productType": "sneakers","gender": ["men"],"season": "2025","status": "active","releaseDate": "2026-05-23T23:59:59.999Z","retailPriceCents": 21500,"lowestPriceCents": 18900,"minimumOfferCents": 2500,"maximumOfferCents": 200000,"currency": "USD","sizeUnit": "us","image": "https://image.goat.com/750/attachments/product_template_pictures/images/116/600/527/original/1686126_00.png.png","gridImage": "https://image.goat.com/375/attachments/product_template_pictures/images/116/600/527/original/1686126_00.png.png","url": "https://www.goat.com/sneakers/air-jordan-jordan-12-retro-bloodline-ct8013-003","sizesCount": 34,"sizes": [{"size": 7,"sizePresentation": "7","shoeCondition": "new_no_defects","boxCondition": "good_condition","stockStatus": "single_in_stock","lowestPriceCents": 23300,"instantShipLowestPriceCents": 25200,"lastSoldPriceCents": 23300,"currency": "USD"},{"size": 8,"sizePresentation": "8","shoeCondition": "new_no_defects","boxCondition": "good_condition","stockStatus": "single_in_stock","lowestPriceCents": 19900,"instantShipLowestPriceCents": 21600,"lastSoldPriceCents": 23500,"currency": "USD"}],"scrapedAt": "2026-06-10T11:03:22Z"}
If a slug can't be found, you get a diagnostic record instead of a silent skip:
{"recordType": "PRODUCT","slug": "this-slug-does-not-exist-000000","url": "https://www.goat.com/sneakers/this-slug-does-not-exist-000000","error": "NOT_FOUND","scrapedAt": "2026-06-10T11:05:00Z"}
| Field | Type | Description |
|---|---|---|
recordType | string | Always "PRODUCT". |
productTemplateId | integer | GOAT's internal product id. |
country | string | Ship-to market the size availability and lowest asks reflect (echoes your country input). |
slug | string | Product slug. |
name | string | Product name. |
nickname | string | Short nickname when GOAT lists one. |
sku | string | Manufacturer style code. |
brand | string | Brand name. |
colorway | string | Primary color / colorway. |
designer | string | Designer credit when available. |
silhouette | string | Model silhouette (e.g. Air Jordan 12). |
releaseDate | string | Release date (ISO 8601). |
retailPriceCents | integer | Retail / release price, in cents. |
lowestPriceCents | integer | Lowest ask across all sizes, in cents. |
minimumOfferCents / maximumOfferCents | integer | Offer range GOAT accepts, in cents. |
currency | string | ISO currency of the prices. |
image / gridImage | string | Product image URLs. |
url | string | Full product URL. |
sizesCount | integer | Number of size entries returned. |
sizes | array | Per-size availability (see below). |
error | string | Present only on failure: NOT_FOUND or BLOCKED_AFTER_RETRIES. |
scrapedAt | string | ISO 8601 timestamp of collection. |
Each entry in sizes:
| Field | Type | Description |
|---|---|---|
size / sizePresentation | number / string | Size value and its display label. |
shoeCondition | string | e.g. new_no_defects. |
boxCondition | string | e.g. good_condition, missing_lid. |
stockStatus | string | e.g. single_in_stock, not_in_stock. |
lowestPriceCents | integer | Lowest ask for this size, in cents (null if none in stock). |
instantShipLowestPriceCents | integer | Lowest instant-ship ask for this size, in cents. |
lastSoldPriceCents | integer | Last sold price for this size, in cents. |
currency | string | ISO currency of the size's prices. |
Note: prices are returned in cents. GOAT normalizes the amounts to USD while filtering the available sizes and lowest asks by the country market you pick, so changing country can return different in-stock sizes, stock status, and lowest asks for the same product. Run with a RESIDENTIAL proxy for consistent availability and pricing.
Other GOAT Scrapers
| Actor | Description |
|---|---|
| GOAT Search Scraper | Keyword and category search results with product tiles. |
| GOAT Product Scraper | Full product detail with per-size availability and lowest ask. |