Endpoint Playground
Test Crawlora's Search GOAT 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/search?categories=footwear&colors=black&genders=men&conditions=new_no_defects&product_types=sneakers&activities=lifestyle&sort=relevance" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| query | string | No | Free-text search query, e.g. a model name, colorway, or style code. Optional -- omit to browse by facet filters alone | |
| in_stock | boolean | No | Only include products currently in stock | |
| categories | string | No | footwear | Filter by category, comma-separated for multiple values. See GET /goat/search/facets for the current live list |
| colors | string | No | black | Filter by color, comma-separated for multiple values |
| genders | string | No | men | Filter by gender, comma-separated for multiple values |
| conditions | string | No | new_no_defects | Filter by item condition, comma-separated for multiple values |
| product_types | string | No | sneakers | Filter by footwear sub-type, comma-separated for multiple values |
| activities | string | No | lifestyle | Filter by activity (sneakers only), comma-separated for multiple values |
| brands | string | No | Filter by one or more brand slugs, comma-separated, e.g. air-jordan,nike. GET /goat/search/facets lists GOAT's top brands; long-tail brands are valid here even when absent from that list | |
| silhouettes | string | No | Filter by one or more silhouettes, comma-separated, matching GOAT's own naming (see a product's silhouette field) | |
| designers | string | No | Filter by one or more designers, comma-separated, matching GOAT's own naming (see a product's designer field) | |
| years | string | No | Filter by season year(s), comma-separated, e.g. 2025,2026. See GET /goat/search/facets for the current live list | |
| price_cents_min | integer | No | Only include results priced at or above this amount, in cents | |
| price_cents_max | integer | No | Only include results priced at or below this amount, in cents | |
| under_retail | boolean | No | Only include products currently trading below original retail price | |
| instant_ship | boolean | No | Only include products with GOAT Instant Ship availability | |
| sort | string | No | relevance | Result sort order, defaults to relevance |
| collection_slug | string | No | Scope results to a GOAT curated collection (see GET /goat/collection), combinable with query, every other filter, and sort | |
| released_after | string | No | Only include products released on or after this date (YYYY-MM-DD, UTC) | |
| released_before | string | No | Only include products released on or before this date (YYYY-MM-DD, UTC) | |
| page | integer | No | 1-indexed result page, defaults to 1 | |
| limit | integer | No | Results per page, defaults to 12, maximum 100 |
{
"code": 200,
"msg": "OK",
"data": {
"query": "jordan 1",
"page": 1,
"limit": 12,
"total_results": 5540,
"products": [
{
"id": "1469452",
"slug": "fragment-design-x-travis-scott-x-air-jordan-1-low-og-sp-sail-military-blue-dm7866-104",
"title": "Fragment Design x Travis Scott x Air Jordan 1 Retro Low OG SP 'Sail Military Blue'",
"brand_name": "Air Jordan",
"silhouette": "Air Jordan 1",
"category": "shoes",
"product_type": "sneakers",
"gender": "men",
"image_url": "https://image.goat.com/attachments/product_template_pictures/images/112/426/275/original/1469452_00.png.png",
"in_stock": true,
"retail_price": {
"amount_cents": 15000,
"currency": "USD"
},
"lowest_price": {
"amount_cents": 49100,
"currency": "USD"
},
"instant_lowest_price": {
"amount_cents": 52000,
"currency": "USD"
},
"release_date": "2025-11-15",
"tags": [
"3F",
"Luxury Gifts",
"Gifts for the Streetwear Obsessed"
],
"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.
Searches or browses GOAT's sneaker/streetwear/collectibles catalog by free-text query and/or facet filters (category, footwear sub-type, activity, color, gender, condition, brand, release year, price range, release-date range, silhouette, designer, in-stock/under-retail/instant-ship, curated collection), returning normalized product summaries (brand, silhouette, category, image, stock status, headline pricing across all sizes) plus the total matching count. Query is optional -- a facet filter alone browses the catalog the same way GOAT's own category/brand pages do. Credential-free public data from the same JSON API backing GOAT's own search page.
{
"code": 200,
"msg": "OK",
"data": {
"query": "jordan 1",
"page": 1,
"limit": 12,
"total_results": 5540,
"products": [
{
"id": "1469452",
"slug": "fragment-design-x-travis-scott-x-air-jordan-1-low-og-sp-sail-military-blue-dm7866-104",
"title": "Fragment Design x Travis Scott x Air Jordan 1 Retro Low OG SP 'Sail Military Blue'",
"brand_name": "Air Jordan",
"silhouette": "Air Jordan 1",
"category": "shoes",
"product_type": "sneakers",
"gender": "men",
"image_url": "https://image.goat.com/attachments/product_template_pictures/images/112/426/275/original/1469452_00.png.png",
"in_stock": true,
"retail_price": {
"amount_cents": 15000,
"currency": "USD"
},
"lowest_price": {
"amount_cents": 49100,
"currency": "USD"
},
"instant_lowest_price": {
"amount_cents": 52000,
"currency": "USD"
},
"release_date": "2025-11-15",
"tags": [
"3F",
"Luxury Gifts",
"Gifts for the Streetwear Obsessed"
],
"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/search" \
-H "x-api-key: $CRAWLORA_API_KEY"