adidas.cl APIwww.adidas.cl ↗
Fetch Adidas Chile product listings and details via API. Filter by gender, sport, and category. Returns pricing, sizes, colors, images, and attributes.
curl -X GET 'https://api.parse.bot/scraper/0bfa8a5a-9821-4b49-be06-c8f831b54aaa/get_products?limit=5&start=0&category=hombre-running' \ -H 'X-API-Key: $PARSE_API_KEY'
Get product listings filtered by category. Combine taxonomy filters with hyphens (e.g., hombre-running for men's running, mujer-zapatillas for women's shoes). Supports gender (hombre/mujer/ninos), sport (running/futbol/basketball/tenis/training), product type (zapatillas/ropa/zapatos_de_futbol), and color filters. Returns paginated results.
| Param | Type | Description |
|---|---|---|
| limit | integer | Maximum number of products to return from the current page. |
| start | integer | Pagination offset (0-based). Each page returns up to 48 items. |
| category | string | Taxonomy category filter. Combine segments with hyphens for multiple filters. Examples: hombre-running, hombre-futbol, mujer-zapatillas, ninos-futbol, hombre-running-negro |
{
"type": "object",
"fields": {
"category": "string - the category filter used",
"products": "array of product objects with product_id, name, price, sale_price, rating, technologies, available_sizes, etc.",
"view_size": "integer - items per page from API",
"start_index": "integer - current pagination offset",
"total_count": "integer - total products matching the filter",
"products_returned": "integer - actual products in this response"
},
"sample": {
"data": {
"category": "hombre-running",
"products": [
{
"link": "/zapatillas-de-running-adizero-adios-pro-4/JR4796.html",
"name": "ZAPATILLAS DE RUNNING ADIZERO ADIOS PRO 4",
"image": "https://assets.adidas.com/images/w_280,h_280,f_auto,q_auto:sensitive/fa49260d2e2c4db2a6e9efc25d198e28_9366/zapatillas-de-running-adizero-adios-pro-4.jpg",
"price": 239990,
"sport": "Running",
"rating": 4.197,
"surface": [
"Carretera",
"Cinta de correr"
],
"category": "shoes",
"division": "Performance",
"model_id": "OMN16",
"subtitle": "Hombre Running",
"product_id": "JR4796",
"sale_price": 239990,
"online_from": "2025-12-11T00:00:00.000Z",
"custom_badge": "Envío gratis",
"is_orderable": 1,
"rating_count": 66,
"technologies": [
"TRAXION",
"LIGHTSTRIKE",
"LIGHTSTRIKEPRO",
"CONTINENTAL"
],
"sustainability": [],
"available_sizes": [
"US 6"
],
"sale_percentage": "0%",
"color_variations": [
"JR1094",
"JP6622"
],
"is_personalizable": false,
"generic_product_type": [
"TRAINERS"
]
}
],
"view_size": 48,
"start_index": 0,
"total_count": 268,
"products_returned": 2
},
"status": "success"
}
}About the adidas.cl API
The Adidas Chile API gives developers structured access to the adidas.cl product catalog through 2 endpoints. Use get_products to retrieve paginated listings filtered by gender, sport, or product type, and get_product_details to pull complete data on specific items — including all color variants, size availability, pricing, technologies, and over a dozen attribute fields per product.
Browsing the Catalog
The get_products endpoint returns paginated product listings from adidas.cl. The category parameter accepts hyphen-combined taxonomy segments — for example, hombre-running for men's running products or mujer-zapatillas for women's shoes. Pagination is controlled with start (0-based offset) and limit. Each page contains up to 48 items, and the response includes total_count so you can calculate how many pages exist. Each product object in the products array exposes product_id, name, price, sale_price, rating, technologies, and available_sizes.
Product Detail Data
The get_product_details endpoint accepts a comma-separated list of product_ids sourced from get_products results. The response per product includes view_list (all product images with metadata), variation_list (per-size SKU codes and GTINs), product_link_list (color variants with images and prices), and pricing_information with currentPrice, standard_price, and standard_price_no_vat. The attribute_list object covers brand, color, gender, sport, technologies, weight, and surface — useful for building filters or structured product feeds.
Coverage and Filtering
Supported gender segments are hombre, mujer, and ninos. Sport filters include running, futbol, basketball, tenis, and training. Product type filters include zapatillas and ropa. These segments can be combined with hyphens in the category param, allowing targeted queries like ninos-futbol or mujer-training-ropa without any additional query syntax.
- Track sale prices and standard prices across adidas.cl to monitor discounts on specific categories
- Build a size-availability checker by querying
variation_listfromget_product_detailsfor target product IDs - Aggregate product technology tags (e.g. Boost, Primeknit) across the
hombre-runningcategory for feature comparison - Sync a product feed for an affiliate or comparison site using paginated
get_productsresults withtotal_countfor full coverage - Extract GTIN codes from
variation_listto match adidas.cl SKUs with other regional catalog data - Monitor color variant availability by polling
product_link_listfor specific products over time - Filter children's footwear by combining
ninosandzapatillassegments to scope a niche catalog segment
| Tier | Price | Credits/month | Rate limit |
|---|---|---|---|
| Free | $0/mo | 100 | 5 req/min |
| Hobby | $30/mo | 1,000 | 20 req/min |
| Developer | $100/mo | 5,000 | 250 req/min |
One credit = one API call regardless of which marketplace API you call. Exceeding the rate limit returns a 429 response. Authenticate with the X-API-Key header.
Does Adidas have an official developer API for its product catalog?+
How do I retrieve all products in a category when there are more than 48 results?+
get_products response includes total_count and view_size. Increment the start parameter by view_size on each subsequent request until you have fetched all records. For example, if total_count is 144 and view_size is 48, you need three requests with start values of 0, 48, and 96.Does `get_product_details` return stock levels or inventory counts?+
variation_list with their SKU codes and GTINs, but does not expose numeric stock counts or real-time inventory levels. You can fork this API on Parse and revise it to add an inventory-focused endpoint if stock quantities are available from the source.Are customer reviews or ratings data returned beyond the aggregate rating field?+
get_products endpoint returns an aggregate rating field per product. Individual review text, reviewer details, and rating breakdowns are not covered by either endpoint. You can fork this API on Parse and revise it to add a reviews endpoint targeting that data.Can I filter products by price range or sort order through the API?+
get_products endpoint supports filtering via the category taxonomy parameter, limit, and start for pagination. Price range filtering and explicit sort order are not exposed as parameters. You can fork this API on Parse and revise it to add those input options.