GOAT API endpoint
Use Crawlora's Search GOAT products 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/searchSearches 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. 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 |
|---|---|---|---|---|---|
| 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 | Filter by category, comma-separated for multiple values. See GET /goat/search/facets for the current live list Allowed values: footwear, apparel, accessories, bags, collectibles, media, sports, jewelry, home, objects, other, art | ||
| colors | string | No | Filter by color, comma-separated for multiple values Allowed values: black, white, blue, grey, red, green, pink, cream, brown, purple, multi-color, orange, tan, yellow, silver, gold, teal, copper | ||
| genders | string | No | Filter by gender, comma-separated for multiple values Allowed values: men, youth, infant, women | ||
| conditions | string | No | Filter by item condition, comma-separated for multiple values Allowed values: new_no_defects, used, new_with_defects, goat_clean | ||
| product_types | string | No | Filter by footwear sub-type, comma-separated for multiple values Allowed values: sneakers, sandals, cleats, boots, slip-ons | ||
| activities | string | No | Filter by activity (sneakers only), comma-separated for multiple values Allowed values: lifestyle, basketball, running, skateboarding | ||
| 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 Allowed values: relevance, newest, price_asc, price_desc, discount | |
| 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 | 1-indexed result page, defaults to 1 | |
| limit | integer | No | 12 | Results per page, defaults to 12, maximum 100 | |
| x-api-key (header) | string | Yes | API key required |
curl -X GET "https://api.crawlora.net/api/v1/goat/search?query=coffee&in_stock=true&categories=footwear&colors=black&genders=men&conditions=new_no_defects&product_types=sneakers&activities=lifestyle&under_retail=true&instant_ship=true&sort=relevance&page=1&limit=10" \ -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.
- `total_results` reflects GOAT's matching-result count for the applied query/filters, not just `len(products)`. - `total_results_capped` is `true` when GOAT saturated that count at its ceiling of `10000`. The real number of matches is then higher and unknown — do not present `10000` as an exact total, and do not stop paging there. Deeper pages keep returning distinct products well past the ceiling (page `150` at `limit=100` still returns a full page), so page until a page comes back short or empty rather than until `page * limit` reaches `total_results`. Narrow the query with facet filters if you need an exact count. - `lowest_price`/`instant_lowest_price` are the lowest current price across all sizes/conditions for that product. See `GET /goat/product/{slug}` for a per-size breakdown. - An invalid `categories`, `colors`, `genders`, `conditions`, `product_types`, `activities`, or `sort` value, a malformed `brands`/`years`/`released_after`/`released_before` value, a negative `price_cents_min`/`price_cents_max`, `price_cents_min` greater than `price_cents_max`, or `released_after` later than `released_before` returns `400` before any upstream request is made. - `query` and every facet filter are optional; omitting all of them browses GOAT's full catalog, most-relevant first. Example response: ```json { "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" } ] } } ```
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 |
| 500 | Internal Server Error | #/definitions/app.Response |
| 503 | Service Unavailable | #/definitions/app.Response |
{
"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"
}
]
}
}Request schema
No body schema
Response schema
#/definitions/goat.searchResponseDoc
| Field | Type | Required | Enum | Bounds | Example | Description |
|---|---|---|---|---|---|---|
| code | integer | No | 200 | |||
| data | goat.SearchResponse | No | ||||
| data.limit | integer | No | 12 | |||
| data.page | integer | No | 1 | |||
| data.products | array | No | ||||
| data.products[].brand_name | string | No | Air Jordan | |||
| data.products[].category | string | No | shoes | |||
| data.products[].gender | string | No | men | |||
| data.products[].id | string | No | 1469452 | |||
| data.products[].image_url | string | No | ||||
| data.products[].in_stock | boolean | No | true | |||
| data.products[].instant_lowest_price | goat.Price | No | ||||
| data.products[].instant_lowest_price.amount_cents | integer | No | 49100 | |||
| data.products[].instant_lowest_price.currency | string | No | USD | |||
| data.products[].lowest_price | goat.Price | No | ||||
| data.products[].lowest_price.amount_cents | integer | No | 49100 | |||
| data.products[].lowest_price.currency | string | No | USD | |||
| data.products[].product_type | string | No | sneakers | |||
| data.products[].release_date | string | No | 2025-11-15 | |||
| data.products[].retail_price | goat.Price | No | ||||
| data.products[].retail_price.amount_cents | integer | No | 49100 | |||
| data.products[].retail_price.currency | string | No | USD | |||
| data.products[].silhouette | string | No | Air Jordan 1 | |||
| data.products[].slug | string | No | fragment-design-x-travis-scott-x-air-jordan-1-low-og-sp-sail-military-blue-dm7866-104 | |||
| data.products[].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.products[].tags | array | No | ||||
| data.products[].title | string | No | Fragment Design x Travis Scott x Air Jordan 1 Retro Low OG SP 'Sail Military Blue' | |||
| data.products[].under_retail | boolean | No | false | |||
| data.query | string | No | jordan 1 | |||
| data.total_results | integer | No | 5540 | |||
| data.total_results_capped | boolean | No | false | TotalResultsCapped reports that upstream saturated total_results at its ceiling, so the real match count is higher and unknown. Deeper pages still return products past that ceiling. | ||
| 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/search?query=coffee&in_stock=true&categories=footwear&colors=black&genders=men&conditions=new_no_defects&product_types=sneakers&activities=lifestyle&under_retail=true&instant_ship=true&sort=relevance&page=1&limit=10" \
-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