Endpoint Playground
Test Crawlora's GOAT Collection 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/collection?slug=<slug>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| slug | string | Yes | GOAT collection slug, e.g. as seen in a curated rail on GOAT's own site | |
| page | integer | No | 1-indexed result page, defaults to 1 | |
| limit | integer | No | Results per page, defaults to 12, maximum 100 | |
| exclude_product_ids | string | No | Omit specific products by id, comma-separated |
{
"code": 200,
"msg": "OK",
"data": {
"slug": "top-trending-uk",
"page": 1,
"limit": 12,
"total_results": 395,
"products": [
{
"id": "1481726",
"slug": "air-jordan-4-retro-rare-air-fv5029-003",
"title": "Air Jordan 4 Retro 'Rare Air - White Lettering'",
"image_url": "https://image.goat.com/attachments/product_template_pictures/images/110/905/352/original/1481726_00.png.png",
"category": "shoes",
"release_year": "2025",
"source_url": "https://www.goat.com/sneakers/air-jordan-4-retro-rare-air-fv5029-003"
}
]
}
}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 page of one of GOAT's curated product collections (an editorial rail like "top trending" or "new arrivals"), the same call GOAT's own product-page "you may also like" rails and homepage modules use. Collection slugs are not enumerable by this API -- capture one from a live GOAT page. Credential-free public data.
{
"code": 200,
"msg": "OK",
"data": {
"slug": "top-trending-uk",
"page": 1,
"limit": 12,
"total_results": 395,
"products": [
{
"id": "1481726",
"slug": "air-jordan-4-retro-rare-air-fv5029-003",
"title": "Air Jordan 4 Retro 'Rare Air - White Lettering'",
"image_url": "https://image.goat.com/attachments/product_template_pictures/images/110/905/352/original/1481726_00.png.png",
"category": "shoes",
"release_year": "2025",
"source_url": "https://www.goat.com/sneakers/air-jordan-4-retro-rare-air-fv5029-003"
}
]
}
}curl "https://api.crawlora.net/api/v1/goat/collection?slug=<slug>" \
-H "x-api-key: $CRAWLORA_API_KEY"