GOAT Product Scraper avatar

GOAT Product Scraper

Pricing

from $20.00 / 1,000 results

Go to Apify Store
GOAT Product Scraper

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

Farhan Febrian Nauval

Maintained by Community

Actor stats

0

Bookmarked

2

Total users

1

Monthly active users

4 days ago

Last modified

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

  1. You provide one or more GOAT product slugs or full goat.com/sneakers/<slug> URLs, and optionally a ship-to country.
  2. The actor fetches each product and reads its full detail — name, SKU, brand, colorway, release date, retail price, and images.
  3. 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.
  4. Each product is saved as one PRODUCT record; products that can't be found return a record with an error field instead of being skipped.
  5. 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"] }
}
FieldTypeDescription
slugsarrayRequired. GOAT product slugs or full goat.com/sneakers/<slug> URLs (one per entry).
countrystringShip-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.
maxConcurrencyintegerNumber of products fetched in parallel. Default 4.
maxRequestRetriesintegerRetries per product before giving up. Default 5.
proxyConfigurationobjectApify 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"
}
FieldTypeDescription
recordTypestringAlways "PRODUCT".
productTemplateIdintegerGOAT's internal product id.
countrystringShip-to market the size availability and lowest asks reflect (echoes your country input).
slugstringProduct slug.
namestringProduct name.
nicknamestringShort nickname when GOAT lists one.
skustringManufacturer style code.
brandstringBrand name.
colorwaystringPrimary color / colorway.
designerstringDesigner credit when available.
silhouettestringModel silhouette (e.g. Air Jordan 12).
releaseDatestringRelease date (ISO 8601).
retailPriceCentsintegerRetail / release price, in cents.
lowestPriceCentsintegerLowest ask across all sizes, in cents.
minimumOfferCents / maximumOfferCentsintegerOffer range GOAT accepts, in cents.
currencystringISO currency of the prices.
image / gridImagestringProduct image URLs.
urlstringFull product URL.
sizesCountintegerNumber of size entries returned.
sizesarrayPer-size availability (see below).
errorstringPresent only on failure: NOT_FOUND or BLOCKED_AFTER_RETRIES.
scrapedAtstringISO 8601 timestamp of collection.

Each entry in sizes:

FieldTypeDescription
size / sizePresentationnumber / stringSize value and its display label.
shoeConditionstringe.g. new_no_defects.
boxConditionstringe.g. good_condition, missing_lid.
stockStatusstringe.g. single_in_stock, not_in_stock.
lowestPriceCentsintegerLowest ask for this size, in cents (null if none in stock).
instantShipLowestPriceCentsintegerLowest instant-ship ask for this size, in cents.
lastSoldPriceCentsintegerLast sold price for this size, in cents.
currencystringISO 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

ActorDescription
GOAT Search ScraperKeyword and category search results with product tiles.
GOAT Product ScraperFull product detail with per-size availability and lowest ask.