GOAT API endpoint
Use Crawlora's Get GOAT product detail API to extract supported public GOAT data as structured JSON. This page includes request parameters, cURL examples, response schema, error behavior, credit cost, and a Playground link for testing before integration.
/goat/product/{slug}Returns a normalized GOAT product: identity/descriptive metadata (name, brand, SKU, colorway, designer, silhouette, taxonomy, materials, release date, retail price, editorial story, images, full size range, other products featured alongside it), plus live per-size/condition pricing and stock status (lowest price, GOAT Instant Ship price, last sold price, highest current buyer offer). Credential-free public data combining GOAT's own product-page payload with its live pricing and offers APIs. Developers commonly use this endpoint for data enrichment, monitoring, research dashboards, internal automation, and agent-native workflows that need repeatable structured public web data. Authentication uses the documented Crawlora headers, and usage is metered with the credit cost shown on this page.
Request parameters are generated from the active endpoint catalog. Required values must be sent before Crawlora can call the upstream public web data source.
| Parameter | Type | Required | Default | Description | Example |
|---|---|---|---|---|---|
| slug (path) | string | Yes | GOAT product URL slug, the path segment of a https://www.goat.com/sneakers/{slug} product page | ||
| country_code | string | No | US | ISO 3166-1 alpha-2 country code used to localize per-size pricing, defaults to US | |
| x-api-key (header) | string | Yes | API key required |
curl -X GET "https://api.crawlora.net/api/v1/goat/product/%3Cslug%3E" \ -H "x-api-key: $CRAWLORA_API_KEY"
Send your scraping API key in the x-api-key header. Use the console API Keys page to rotate or select the active key.
Endpoint usage is metered in credits. The plan prices, included credits, limits, and overage rates below match the active backend billing configuration.
| Plan | Price | Included credits | Daily cap | Rate limit | Overage |
|---|---|---|---|---|---|
| Free | $0/mo | 2,000 | 500 daily credits | 5/min | No overage |
| Starter | $9/mo | 20,000 | 5,000 daily credits | 15/min | $0.75/1,000 overage credits when enabled |
| Growth | $29/mo | 100,000 | 25,000 daily credits | 45/min | $0.45/1,000 overage credits when enabled |
| Pro | $79/mo | 400,000 | No daily cap | 120/min | $0.30/1,000 overage credits |
| Business | $199/mo | 1,200,000 | No daily cap | 300/min | $0.20/1,000 overage credits |
| Enterprise | $499/mo | 5,000,000 | No daily cap | 1,000/min | $0.12/1,000 overage credits |
This endpoint is executed through Crawlora's managed scraping infrastructure.
- `sizes` is populated from a separate, live pricing call; it can come back empty if that call fails transiently even though the rest of the product detail loaded successfully -- retry the request if `sizes` is unexpectedly empty for a known in-stock product. - `sizes[].highest_offer` comes from a third, independent upstream call and is not condition-specific (GOAT's offer feature is size-only) -- it can be absent even when `lowest_price` is present, and vice versa. - `featured_in` is not present for every product -- it reflects GOAT's own curated "related release" links on that specific product's page, which not every product has. - An unknown `slug` returns `404`. Example response: ```json { "code": 200, "msg": "OK", "data": { "id": "1469452", "slug": "fragment-design-x-travis-scott-x-air-jordan-1-low-og-sp-sail-military-blue-dm7866-104", "name": "Fragment Design x Travis Scott x Air Jordan 1 Retro Low OG SP 'Sail Military Blue'", "nickname": "Sail Military Blue", "brand_name": "Air Jordan", "silhouette": "Air Jordan 1", "sku": "DM7866 104", "colorway": "Cream", "colorway_detail": "Sail/Military Blue/Sail", "designer": "Peter Moore", "gender": ["men"], "category": "shoes", "product_type": "sneakers", "taxonomy": ["Footwear", "Sneakers", "Basketball", "Lifestyle Basketball"], "upper_material": "Leather", "midsole": "Air", "release_date": "2025-11-15", "retail_price": {"amount_cents": 15000, "currency": "USD"}, "story": "...", "picture_url": "https://image.goat.com/1000/attachments/product_template_pictures/images/112/426/275/original/1469452_00.png.png", "images": [ {"image_url": "https://image.goat.com/attachments/product_template_additional_pictures/images/112/426/279/medium/1469452_01.jpg.jpeg", "aspect": 1.5, "order": 1} ], "size_range": [3, 3.5, 4, 4.5, 5], "size_unit": "us", "sizes": [ { "size": "3.5", "shoe_condition": "new_no_defects", "box_condition": "good_condition", "lowest_price": {"amount_cents": 92500, "currency": "USD"}, "instant_ship_lowest_price": {"amount_cents": 99500, "currency": "USD"}, "last_sold_price": {"amount_cents": 111100, "currency": "USD"}, "highest_offer": {"amount_cents": 20000, "currency": "USD"}, "stock_status": "single_in_stock" } ], "featured_in": [ {"name": "Jordan 3 True Blue 2026", "source_url": "https://www.goat.com/sneakers/air-jordan-3-true-blue-2026-if4396-104"} ], "source_url": "https://www.goat.com/sneakers/fragment-design-x-travis-scott-x-air-jordan-1-low-og-sp-sail-military-blue-dm7866-104" } } ```
Crawlora does not silently return bad data when the upstream page cannot be used.
| Status | Common failure case |
|---|---|
| 400 | Invalid input or missing required parameter |
| 429 | Plan or endpoint rate limit exceeded |
| 500 | Internal execution error |
| 502 | Upstream platform failed, returned unusable HTML, or served a challenge page that could not be resolved |
When possible, Crawlora returns structured error context so your integration can retry, back off, or inspect the request.
| Status | Description | Schema |
|---|---|---|
| 400 | Bad Request | #/definitions/app.Response |
| 404 | Not Found | #/definitions/app.Response |
| 500 | Internal Server Error | #/definitions/app.Response |
| 503 | Service Unavailable | #/definitions/app.Response |
{
"code": 200,
"msg": "OK",
"data": {
"id": "1469452",
"slug": "fragment-design-x-travis-scott-x-air-jordan-1-low-og-sp-sail-military-blue-dm7866-104",
"name": "Fragment Design x Travis Scott x Air Jordan 1 Retro Low OG SP 'Sail Military Blue'",
"nickname": "Sail Military Blue",
"brand_name": "Air Jordan",
"silhouette": "Air Jordan 1",
"sku": "DM7866 104",
"colorway": "Cream",
"colorway_detail": "Sail/Military Blue/Sail",
"designer": "Peter Moore",
"gender": [
"men"
],
"category": "shoes",
"product_type": "sneakers",
"taxonomy": [
"Footwear",
"Sneakers",
"Basketball",
"Lifestyle Basketball"
],
"upper_material": "Leather",
"midsole": "Air",
"release_date": "2025-11-15",
"retail_price": {
"amount_cents": 15000,
"currency": "USD"
},
"story": "...",
"picture_url": "https://image.goat.com/1000/attachments/product_template_pictures/images/112/426/275/original/1469452_00.png.png",
"images": [
{
"image_url": "https://image.goat.com/attachments/product_template_additional_pictures/images/112/426/279/medium/1469452_01.jpg.jpeg",
"aspect": 1.5,
"order": 1
}
],
"size_range": [
3,
3.5,
4,
4.5,
5
],
"size_unit": "us",
"sizes": [
{
"size": "3.5",
"shoe_condition": "new_no_defects",
"box_condition": "good_condition",
"lowest_price": {
"amount_cents": 92500,
"currency": "USD"
},
"instant_ship_lowest_price": {
"amount_cents": 99500,
"currency": "USD"
},
"last_sold_price": {
"amount_cents": 111100,
"currency": "USD"
},
"highest_offer": {
"amount_cents": 20000,
"currency": "USD"
},
"stock_status": "single_in_stock"
}
],
"featured_in": [
{
"name": "Jordan 3 True Blue 2026",
"source_url": "https://www.goat.com/sneakers/air-jordan-3-true-blue-2026-if4396-104"
}
],
"source_url": "https://www.goat.com/sneakers/fragment-design-x-travis-scott-x-air-jordan-1-low-og-sp-sail-military-blue-dm7866-104"
}
}Request schema
No body schema
Response schema
#/definitions/goat.productResponseDoc
| Field | Type | Required | Enum | Bounds | Example | Description |
|---|---|---|---|---|---|---|
| code | integer | No | 200 | |||
| data | goat.ProductDetail | No | ||||
| data.brand_name | string | No | Air Jordan | |||
| data.category | string | No | shoes | |||
| data.colorway | string | No | Cream | |||
| data.colorway_detail | string | No | Varsity Red/Black/Sail/Muslin | |||
| data.designer | string | No | Peter Moore | |||
| data.featured_in | array | No | ||||
| data.featured_in[].name | string | No | Jordan 3 True Blue 2026 | |||
| data.featured_in[].source_url | string | No | https://www.goat.com/sneakers/air-jordan-3-true-blue-2026-if4396-104 | |||
| data.gender | array | No | men | |||
| data.id | string | No | 1469452 | |||
| data.images | array | No | ||||
| data.images[].aspect | number | No | 1.5 | |||
| data.images[].image_url | string | No | ||||
| data.images[].order | integer | No | 1 | |||
| data.midsole | string | No | Air | |||
| data.name | string | No | Fragment Design x Travis Scott x Air Jordan 1 Retro Low OG SP 'Sail Military Blue' | |||
| data.nickname | string | No | Sail Military Blue | |||
| data.picture_url | string | No | ||||
| data.product_type | string | No | sneakers | |||
| data.release_date | string | No | 2025-11-15 | |||
| data.retail_price | goat.Price | No | ||||
| data.retail_price.amount_cents | integer | No | 49100 | |||
| data.retail_price.currency | string | No | USD | |||
| data.silhouette | string | No | Air Jordan 1 | |||
| data.size_range | array | No | ||||
| data.size_unit | string | No | us | |||
| data.sizes | array | No | ||||
| data.sizes[].box_condition | string | No | good_condition | |||
| data.sizes[].highest_offer | goat.Price | No | ||||
| data.sizes[].highest_offer.amount_cents | integer | No | 49100 | |||
| data.sizes[].highest_offer.currency | string | No | USD | |||
| data.sizes[].instant_ship_lowest_price | goat.Price | No | ||||
| data.sizes[].instant_ship_lowest_price.amount_cents | integer | No | 49100 | |||
| data.sizes[].instant_ship_lowest_price.currency | string | No | USD | |||
| data.sizes[].last_sold_price | goat.Price | No | ||||
| data.sizes[].last_sold_price.amount_cents | integer | No | 49100 | |||
| data.sizes[].last_sold_price.currency | string | No | USD | |||
| data.sizes[].lowest_price | goat.Price | No | ||||
| data.sizes[].lowest_price.amount_cents | integer | No | 49100 | |||
| data.sizes[].lowest_price.currency | string | No | USD | |||
| data.sizes[].shoe_condition | string | No | new_no_defects | |||
| data.sizes[].size | string | No | 9 | |||
| data.sizes[].stock_status | string | No | single_in_stock | |||
| data.sku | string | No | DM7866 104 | |||
| data.slug | string | No | fragment-design-x-travis-scott-x-air-jordan-1-low-og-sp-sail-military-blue-dm7866-104 | |||
| data.source_url | string | No | https://www.goat.com/sneakers/fragment-design-x-travis-scott-x-air-jordan-1-low-og-sp-sail-military-blue-dm7866-104 | |||
| data.story | string | No | ||||
| data.taxonomy | array | No | ||||
| data.upper_material | string | No | Leather | |||
| msg | string | No | OK |
Use environment variables for secrets and keep Crawlora API keys server-side.
curl -X GET "https://api.crawlora.net/api/v1/goat/product/%3Cslug%3E" \
-H "x-api-key: $CRAWLORA_API_KEY"Crawlora is designed for responsible structured public web data workflows. Customers are responsible for using Crawlora in compliance with applicable laws, third-party rights, target-platform rules, and Crawlora terms.
Read Crawlora terms