Endpoint Playground
Test Crawlora's Get GOAT product detail API with realistic prefilled parameters. Generate a cURL request, inspect the expected structured JSON response, and open the full docs or pricing page when you are ready to integrate this public web data extraction endpoint into your application.
curl "https://api.crawlora.net/api/v1/goat/product/<slug>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| 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 | ISO 3166-1 alpha-2 country code used to localize per-size pricing, defaults to US |
{
"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"
}
}Public Playground
Sample responses, schemas, request previews, and code snippets are visible before sign in. Create an account when you are ready to save an API key and run authenticated requests.
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.
{
"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"
}
}curl "https://api.crawlora.net/api/v1/goat/product/<slug>" \
-H "x-api-key: $CRAWLORA_API_KEY"