Discover/adidas.cl API
live

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.

Endpoints
2
Updated
3mo ago
Try it
Maximum number of products to return from the current page.
Pagination offset (0-based). Each page returns up to 48 items.
Taxonomy category filter. Combine segments with hyphens for multiple filters. Examples: ho
api.parse.bot/scraper/0bfa8a5a-9821-4b49-be06-c8f831b54aaa/<endpoint>
Ready to send
Fill in the parameters and hit sign in to send to see live response data here.
Use it in your codegrab a free API key at signup
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'
All endpoints · 2 totalclick to expand

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.

Input
ParamTypeDescription
limitintegerMaximum number of products to return from the current page.
startintegerPagination offset (0-based). Each page returns up to 48 items.
categorystringTaxonomy category filter. Combine segments with hyphens for multiple filters. Examples: hombre-running, hombre-futbol, mujer-zapatillas, ninos-futbol, hombre-running-negro
Response
{
  "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.

Common use cases
  • Track sale prices and standard prices across adidas.cl to monitor discounts on specific categories
  • Build a size-availability checker by querying variation_list from get_product_details for target product IDs
  • Aggregate product technology tags (e.g. Boost, Primeknit) across the hombre-running category for feature comparison
  • Sync a product feed for an affiliate or comparison site using paginated get_products results with total_count for full coverage
  • Extract GTIN codes from variation_list to match adidas.cl SKUs with other regional catalog data
  • Monitor color variant availability by polling product_link_list for specific products over time
  • Filter children's footwear by combining ninos and zapatillas segments to scope a niche catalog segment
Pricing & limitsSee full pricing →
TierPriceCredits/monthRate limit
Free$0/mo1005 req/min
Hobby$30/mo1,00020 req/min
Developer$100/mo5,000250 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.

Frequently asked questions
Does Adidas have an official developer API for its product catalog?+
Adidas does not publish a public developer API for its regional e-commerce sites like adidas.cl. The official adidas developer program (developers.adidas.com) focuses on partner integrations and does not provide open catalog access for the Chilean storefront.
How do I retrieve all products in a category when there are more than 48 results?+
The 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?+
The endpoint returns available sizes via 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?+
The 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?+
The current 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.
Page content last updated . Spec covers 2 endpoints from www.adidas.cl.
Related APIs in EcommerceSee all →
lowes.com API
Search and browse products from Lowe's, including product listings by category, detailed product information, and pricing. Retrieve comprehensive details on specific items to compare options and make informed purchasing decisions.
bilbasen.dk API
Search Denmark's largest car marketplace to find vehicles by make and model, then access detailed pricing and technical specifications including emissions, weight, MSRP, battery size, and equipment details. Get comprehensive car listings and full specs to compare vehicles on Bilbasen.dk.
jula.fi API
Search and browse products from Jula.fi to find hardware items with detailed information including prices (with and without VAT), stock availability, brand details, and product SKUs. Explore products by category or search for specific items to compare pricing and check real-time stock status.
leroymerlin.fr API
Search and browse Leroy Merlin France's complete product catalog to find items by category, view pricing, product details, and compare offerings from Leroy Merlin and their online partners. Access real-time product information including names, IDs, URLs, and seller details to help you discover and evaluate home improvement and DIY products.
industrynet.com API
Find industrial suppliers and browse product categories across a comprehensive marketplace directory. Connect directly with suppliers by viewing detailed listings and submitting contact inquiries programmatically.
carsforsale.com API
Search vehicle listings and browse detailed car inventory by make, model, and trim to find the perfect vehicle on CarsForSale.com. Access comprehensive listing details including pricing, specifications, and availability all in one place.
vivino.com API
Search and discover wines across thousands of options while accessing detailed information like user reviews, pricing, winery profiles, and food pairing recommendations. Explore grape varieties, compare wines side-by-side, and find the perfect bottle based on ratings and availability.
x-kom.pl API
Access product data from x-kom.pl, a major Polish electronics retailer. Search products by keyword or category, retrieve detailed product pages, customer reviews, Q&A, promotions, flash deals, and physical store locations.