Adidas API endpoint
Use Crawlora's Search or browse Adidas products API to extract supported public Adidas 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.
/adidas/searchSearches Adidas.com product listings by keyword, or browses a category listing by taxonomy slug, with real pagination and sort options. Exactly one of query or category is required. Returns normalized product summaries (title, price, rating, images, color variants) plus facet filter groups, sort options, and (for category browse) a breadcrumb trail. Keyword search is best-effort relevance, not a guaranteed match: an obscure keyword returns whatever Adidas's own search index surfaces. A genuinely empty keyword search returns an empty product list, and requesting a page beyond the available result pages (or an unknown category) returns a not-found error. Category values are the path segment after /us/ in an Adidas category URL (e.g. women-athletic_sneakers); they can also be read from the url fields of a search/category response's own filters and breadcrumbs. 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 | Search keyword. Exactly one of query or category is required. | ||
| category | string | No | Category/taxonomy slug, the path segment after /us/ in an Adidas category URL. Exactly one of query or category is required. | ||
| sort | string | No | Sort order. Allowed values: price-low-to-high, newest-to-oldest, top-sellers, price-high-to-low. Omitted means relevance. | ||
| page | integer | No | 1 | One-based page number, defaults to 1 | |
| x-api-key (header) | string | Yes | API key required |
curl -X GET "https://api.crawlora.net/api/v1/adidas/search?query=coffee&page=1" \ -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.
- Keyword search is best-effort relevance, not a guaranteed keyword match: an obscure `query` returns whatever Adidas's own search index surfaces (there is no reliable signal to distinguish a true match from Adidas's fallback results). - Requesting a `page` beyond the available result pages — or an unknown `category` — returns a not-found error rather than an empty page. - `products[].id` is the Adidas SKU to pass as `product_id` to `adidas-product` for full product-detail data. - `products[]` carries rich per-SKU metadata: `division` (brand line, e.g. Originals/Sportswear/Performance), `category` (e.g. shoes/clothing), `sport[]`, `generic_product_type[]`, `surface[]`, `available_sizes[]`, `color_variations[]`, and `orderable`/`preorderable`/`personalizable` availability flags. - `filters[]` are the facet groups Adidas's own search exposes (e.g. Shipping, Width, Brand, Price), each with `values[]` carrying a live `count`. `sort_options[]` lists the four sort orders with the currently selected one flagged. `breadcrumbs[]` is populated only for category browse (empty for keyword search). - `total_pages` is derived from `total_products` and the 48-per-page size. ```json {"code":200,"msg":"OK","data":{"query":"samba","page":1,"page_size":48,"count":48,"total_products":11939,"total_pages":249,"products":[{"id":"KJ7435","model_number":"OSD72","title":"SAMBA OG SHOES","subtitle":"Women's Originals","url":"https://www.adidas.com/samba-og-shoes/KJ7435.html","division":"Originals","category":"shoes","sport":["Lifestyle"],"generic_product_type":["TRAINERS"],"surface":["Street"],"color_variations":["KI6674","KH9727"],"available_sizes":["5","5.5","6","6.5","7","7.5","8","8.5","9","9.5","10","10.5","11"],"image_url":"https://assets.adidas.com/images/w_280,h_280,f_auto,q_auto:sensitive/f88fdc6701a845be8fa1b2d0656b4ab0_9366/samba-og-shoes.jpg","price":120,"rating":4.7889,"rating_count":450,"orderable":true}],"filters":[{"id":"...","title":"Brand","values":[{"name":"Originals","value":"originals","count":768}]}],"sort_options":[{"id":"price-low-to-high"},{"id":"newest-to-oldest"},{"id":"top-sellers"},{"id":"price-high-to-low"}]}} ``` A category-browse request (`category=women-athletic_sneakers`) returns the same shape with `breadcrumbs` populated: ```json {"code":200,"msg":"OK","data":{"category":"women-athletic_sneakers","page":1,"page_size":48,"count":48,"total_products":1424,"total_pages":30,"products":[{"id":"JI0397","title":"Adifom IIInfinity Slides","price":27,"original_price":45,"discount_percent":40}],"breadcrumbs":[{"text":"Women","link":"/women"},{"text":"Athletic & Sneakers","link":"/women-athletic_sneakers"}]}} ```
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 |
| 404 | Not Found | #/definitions/app.Response |
| 429 | Too Many Requests | #/definitions/app.Response |
| 503 | Service Unavailable | #/definitions/app.Response |
Request schema
No body schema
Response schema
#/definitions/adidas.searchResponseDoc
| Field | Type | Required | Enum | Bounds | Example | Description |
|---|---|---|---|---|---|---|
| code | integer | No | 200 | |||
| data | adidas.SearchResponse | No | ||||
| data.breadcrumbs | array | No | ||||
| data.breadcrumbs[].link | string | No | ||||
| data.breadcrumbs[].text | string | No | ||||
| data.category | string | No | ||||
| data.count | integer | No | ||||
| data.fetched_at | string | No | ||||
| data.filters | array | No | ||||
| data.filters[].id | string | No | ||||
| data.filters[].multiselect | boolean | No | ||||
| data.filters[].title | string | No | ||||
| data.filters[].values | array | No | ||||
| data.filters[].values[].count | integer | No | ||||
| data.filters[].values[].name | string | No | ||||
| data.filters[].values[].value | string | No | ||||
| data.page | integer | No | ||||
| data.page_size | integer | No | ||||
| data.products | array | No | ||||
| data.products[].alt_text | string | No | ||||
| data.products[].available_sizes | array | No | ||||
| data.products[].category | string | No | ||||
| data.products[].color_variations | array | No | ||||
| data.products[].discount_percent | integer | No | ||||
| data.products[].division | string | No | ||||
| data.products[].generic_product_type | array | No | ||||
| data.products[].hover_image_url | string | No | ||||
| data.products[].id | string | No | ||||
| data.products[].image_url | string | No | ||||
| data.products[].is_flash | boolean | No | ||||
| data.products[].model_number | string | No | ||||
| data.products[].online_from | string | No | ||||
| data.products[].orderable | boolean | No | ||||
| data.products[].original_price | number | No | ||||
| data.products[].personalizable | boolean | No | ||||
| data.products[].preorderable | boolean | No | ||||
| data.products[].price | number | No | ||||
| data.products[].rating | number | No | ||||
| data.products[].rating_count | integer | No | ||||
| data.products[].sport | array | No | ||||
| data.products[].subtitle | string | No | ||||
| data.products[].surface | array | No | ||||
| data.products[].title | string | No | ||||
| data.products[].unisex | boolean | No | ||||
| data.products[].url | string | No | ||||
| data.query | string | No | ||||
| data.sort | string | No | ||||
| data.sort_options | array | No | ||||
| data.sort_options[].id | string | No | ||||
| data.sort_options[].selected | boolean | No | ||||
| data.source_url | string | No | ||||
| data.total_pages | integer | No | ||||
| data.total_products | integer | No | ||||
| 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/adidas/search?query=coffee&page=1" \
-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