Endpoint Playground
Test Crawlora's GOAT Recommended Products 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>/recommended" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| slug (path) | string | Yes | GOAT product URL slug to find related products for | |
| count | integer | No | Number of recommended products to return, defaults to 8, maximum 24 |
{
"code": 200,
"msg": "OK",
"data": {
"slug": "fragment-design-x-travis-scott-x-air-jordan-1-low-og-sp-sail-military-blue-dm7866-104",
"products": [
{
"id": "585882",
"slug": "travis-scott-x-dunk-low-sb-ct5053-101",
"name": "Travis Scott x Nike Dunk Low Premium QS SB 'Cactus Jack'",
"brand_name": "Nike",
"sku": "CT5053 001",
"colorway": "Black",
"category": "shoes",
"product_type": "sneakers",
"release_date": "2020-02-29",
"retail_price": {
"amount_cents": 15000,
"currency": "USD"
},
"source_url": "https://www.goat.com/sneakers/travis-scott-x-dunk-low-sb-ct5053-101"
}
]
}
}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 the recommended/related products GOAT's own product page shows for a given product (other colorways, similar products) -- descriptive metadata only, no live pricing. Credential-free public data from GOAT's own product-page recommendation API.
{
"code": 200,
"msg": "OK",
"data": {
"slug": "fragment-design-x-travis-scott-x-air-jordan-1-low-og-sp-sail-military-blue-dm7866-104",
"products": [
{
"id": "585882",
"slug": "travis-scott-x-dunk-low-sb-ct5053-101",
"name": "Travis Scott x Nike Dunk Low Premium QS SB 'Cactus Jack'",
"brand_name": "Nike",
"sku": "CT5053 001",
"colorway": "Black",
"category": "shoes",
"product_type": "sneakers",
"release_date": "2020-02-29",
"retail_price": {
"amount_cents": 15000,
"currency": "USD"
},
"source_url": "https://www.goat.com/sneakers/travis-scott-x-dunk-low-sb-ct5053-101"
}
]
}
}curl "https://api.crawlora.net/api/v1/goat/product/<slug>/recommended" \
-H "x-api-key: $CRAWLORA_API_KEY"