Discover/Decathlon API
live

Decathlon APIdecathlon.fr

Search Decathlon France products, retrieve prices, descriptions, images, variants, and customer reviews via 4 structured JSON endpoints.

Endpoint health
verified 7d ago
search_products
get_product_reviews
search_suggestions
get_product_details
4/4 passing latest checkself-healing
Endpoints
4
Updated
22d ago

What is the Decathlon API?

The Decathlon.fr API provides 4 endpoints to query sporting goods listed on decathlon.fr, covering product search, detailed product data, customer reviews, and autocomplete suggestions. The search_products endpoint returns up to 40 products per page with pricing, brand, images, and pagination metadata. get_product_details exposes color variants, sport categories, eco-design tags, and SKU-level data. Together they give structured access to Decathlon France's catalogue without manual browsing.

Try it
Page number (1-based)
Max number of products to return (up to 40 per page)
Search keyword (e.g., 'chaussures running', 'tente camping', 'velo')
api.parse.bot/scraper/961694c7-1bda-4ace-bfc8-4675353abcab/<endpoint>
Ready to send
Fill in the parameters and hit sign in to send to see live response data here.
Call it over HTTPgrab a free API key at signup
curl -X GET 'https://api.parse.bot/scraper/961694c7-1bda-4ace-bfc8-4675353abcab/search_products?page=1&limit=10&query=running' \
  -H 'X-API-Key: $PARSE_API_KEY'
Python SDK · recommended

Typed, relational, agent-ready

A generated client with real types, enums, and the links between objects — the structure a flat JSON response can't carry. Autocompletes in your editor and reads cleanly to coding agents.

  • Fully typed · autocompletes
  • Objects link to objects
  • Typed errors & pagination

Typed Python client. Set up the SDK in your uv project, then pull this API’s typed client:

uv add parse-sdk
uv run parse init
uv run parse add --marketplace decathlon-fr-api

uv run parse add --marketplace pulls a pinned snapshot of this canonical API — it won’t change underneath you. To customize it, subscribe and swap to your own copy.

from parse_apis.decathlon_france_product_api import Decathlon, ProductSummary, Product, Suggestion

client = Decathlon()

# Search products and iterate results (pagination is automatic)
for product in client.products.search(query="chaussures running", limit=5):
    print(product.name, product.brand, product.price, product.price_currency)

    # Navigate from summary to full details
    detail = product.details()
    print(detail.description, detail.sports, detail.genders)

    # Walk sub-resource: reviews for this product
    for review in product.reviews.list(page_size=3, limit=6):
        print(review.title, review.rating, review.author, review.date)

# Autocomplete suggestions
suggestion = client.suggestions.search(query="velo")
for cat in suggestion.categories:
    print(cat.label, cat.url)
for q in suggestion.queries:
    print(q.label, q.url)
All endpoints · 4 totalmissing one? ·

Full-text search over Decathlon.fr product catalog. Returns up to 40 products per page with pagination metadata. Queries that would redirect to a category page on the site are handled transparently. Each product carries pricing, brand, review summary, and available sizes.

Input
ParamTypeDescription
pageintegerPage number (1-based)
limitintegerMax number of products to return (up to 40 per page)
queryrequiredstringSearch keyword (e.g., 'chaussures running', 'tente camping', 'velo')
Response
{
  "type": "object",
  "fields": {
    "page": "integer - current page number",
    "query": "string - the search query used",
    "products": "array of product summary objects with id, name, brand, price, price_without_tax, original_price, price_currency, price_type, image_url, url, model_id, sku_id, product_nature, available_online, reviews_count, reviews_rating, available_sizes",
    "total_pages": "integer - total number of pages",
    "has_next_page": "boolean - whether more pages are available",
    "items_per_page": "integer - items per page (always 40)",
    "total_products": "integer - total number of matching products"
  },
  "sample": {
    "data": {
      "page": 1,
      "query": "running",
      "products": [
        {
          "id": "386925",
          "url": "https://www.decathlon.fr/p/chaussure-de-running-homme-brooks-ghost-18-beige-orange/386925/m9030646",
          "name": "Chaussure de running homme Brooks Ghost 18 Beige Orange",
          "brand": "BROOKS",
          "price": 149.99,
          "sku_id": "0a65eb6c-dfe5-41ee-95b3-fcc8696e4271",
          "model_id": "9030646",
          "image_url": "https://contents.mediadecathlon.com/p3171663/picture.jpg",
          "price_type": "STANDARD",
          "reviews_count": null,
          "original_price": null,
          "price_currency": "EUR",
          "product_nature": "chaussures de sport",
          "reviews_rating": null,
          "available_sizes": [
            "40",
            "41",
            "42"
          ],
          "available_online": true,
          "price_without_tax": 124.992
        }
      ],
      "total_pages": 90,
      "has_next_page": true,
      "items_per_page": 40,
      "total_products": 3575
    },
    "status": "success"
  }
}

About the Decathlon API

Search and Browse the Catalogue

The search_products endpoint accepts a required query string — for example 'chaussures running' or 'tente camping' — plus optional page and limit parameters. Each result object includes id, name, brand, price, original_price, price_without_tax, price_currency, price_type, image_url, and a product url. The response also surfaces total_products, total_pages, and has_next_page, so iterating through a full result set is straightforward. Queries that would normally redirect to a category page on the site are handled transparently.

Product Detail and Variant Data

get_product_details takes a sku_id UUID from any search_products result and returns a richer object: full name, price, available colors, associated sports categories, size label, and tags such as BUY_BACK or ECO_DESIGN. The response also includes the product url and brand, making it straightforward to build a detail view or compare specific variants. The sku_id and model_id fields bridge between endpoints — model_id is needed for the reviews endpoint.

Customer Reviews and Ratings

get_product_reviews accepts a model_id, a page number, and a page_size of up to 50. The stats object includes average_rating, total_reviews, recommended_count, percent_satisfied, a full rating_distribution breakdown, and average_attribute_ratings. Individual review objects carry rating, rating_label, title, comment, author, date, recommended, is_verified_buyer, country, and lang.

Autocomplete Suggestions

search_suggestions takes a single query string and returns three arrays: queries (suggested query strings with labels and URLs), products (top matching products with price and image), and categories (matching category entries with labels, URLs, and images). This endpoint is useful for building typeahead interfaces or discovering canonical category structures within the Decathlon France catalogue.

Reliability & maintenanceVerified

The Decathlon API is a managed, monitored endpoint for decathlon.fr — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when decathlon.fr changes and a check fails, the API is automatically queued for repair and re-verified. It is built to keep working as the site underneath it changes.

This isn't an official decathlon.fr API — it's an independent, maintained REST wrapper over public data. Where the source has no official API (or only a limited one), Parse gives you a stable contract over a source that never promised one, and keeps it current. Need a new endpoint or field? You can revise it yourself in plain English and the agent rebuilds it against the live site in minutes — contributing the change back to the shared API is free.

Last verified
7d ago
Latest check
4/4 endpoints passing
Maintenance
Monitored & self-healing
Will this API break when the source site changes?+
It's built not to. Every endpoint is health-checked on a schedule with automated test probes. When the source site changes and a check fails, the API is automatically queued for repair and re-verified — that's the self-healing layer. Each API page shows when its endpoints were last verified. And because marketplace APIs are shared, any fix reaches everyone using it.
Is this an official API from the source site?+
No — Parse APIs are independent, managed REST wrappers over publicly available data. That is the point: where a site has no official API (or only a limited one), Parse gives you a maintained, monitored endpoint for that data and keeps it working as the site changes — so you get a stable contract over a source that never promised one.
Can I fix or extend this API myself if I need a new endpoint or field?+
Yes — and you don't have to wait on us. This API was generated by the Parse agent, which stays attached. Describe the change in plain English ("add an endpoint that returns reviews", "fix the price field") in the revise box on the API page or via the revise_api MCP tool, and the agent rebuilds it against the live site in minutes. Contributing the change back to the public API is free.
What happens if I call an endpoint that has an issue?+
Errors are machine-readable: a bad call returns a clean status with the list of available endpoints and a repair hint, so an agent (or you) can recover or trigger a fix instead of failing silently. Confirmed failures feed the automatic repair queue.
Common use cases
  • Monitor price changes on specific Decathlon France products using search_products and tracking the price and original_price fields over time.
  • Aggregate customer sentiment by pulling average_rating, percent_satisfied, and rating_distribution from get_product_reviews across product lines.
  • Build a product comparison tool using colors, sports, tags, and price fields from get_product_details.
  • Populate a typeahead search bar using the queries and categories arrays returned by search_suggestions.
  • Identify eco-labeled or buy-back eligible gear by filtering get_product_details results for ECO_DESIGN or BUY_BACK in the tags array.
  • Compile a structured catalogue of Decathlon France sporting goods across categories using paginated search_products calls with sport-specific queries.
  • Analyze verified-buyer review text by filtering is_verified_buyer reviews from get_product_reviews for sentiment or keyword analysis.
Pricing & limitsSee full pricing →
TierPriceCredits/monthRate limit
Free$0/mo1005 req/min
Hobby$30/mo1,00020 req/min
Developer$100/mo5,000100 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 Decathlon have an official public developer API?+
Decathlon does not publish a general-purpose public developer API for product catalogue data on decathlon.fr. This Parse API provides structured access to that data via four endpoints.
What does `get_product_reviews` return beyond a star rating?+
In addition to the per-review rating and comment, the stats object includes recommended_count, percent_satisfied, a rating_distribution breakdown across star levels, and average_attribute_ratings. Each individual review also carries is_verified_buyer, country, and lang fields.
Does the API cover Decathlon stores in other countries or other regional domains?+
The API covers decathlon.fr specifically. Other regional Decathlon domains (such as decathlon.co.uk or decathlon.de) are not currently included. You can fork this API on Parse and revise it to point at a different regional domain if you need coverage for another market.
Is stock availability or inventory data returned by any endpoint?+
Not currently. The endpoints return pricing, variant, and review data but do not expose stock levels or in-store inventory. You can fork this API on Parse and revise it to add an endpoint that surfaces availability information.
How does pagination work in `search_products`?+
The endpoint returns total_pages, has_next_page, and items_per_page (fixed at 40) alongside the current page number. Pass the page parameter incrementally to walk through the full result set for a given query.
Page content last updated . Spec covers 4 endpoints from decathlon.fr.
Related APIs in EcommerceSee all →
nike.com API
Search the Nike product catalog by keyword and retrieve detailed product information including pricing, sizing, color variants, and availability. Use autocomplete suggestions to refine queries and discover relevant products on Nike.com.
fnac.com API
Search for electronics and cultural products on Fnac while accessing detailed product information, customer reviews, current deals, and flash sales all in one place. Get comprehensive insights including pricing, specifications, and promotional offers to make informed shopping decisions.
amazon.fr API
Scrape product data from Amazon.fr, including search results, product details, specifications, seller offers, customer reviews, and current deals.
darty.com API
Search and browse electronics products from Darty.com, view detailed specifications and pricing information, and add items directly to your cart. Discover product details like features, availability, and technical specs to help you find exactly what you need.
manomano.fr API
Search ManoMano.fr products by keyword and browse listings with prices, brands, images, and product URLs.
carrefour.fr API
carrefour.fr API
adidas.de API
Search and browse Adidas products on adidas.de to find detailed information about items, availability, pricing, and specific categories. Get comprehensive product details including size availability and stock levels across the German Adidas store.
patagonia.com API
Access Patagonia's full product catalog via search and category browsing. Retrieve detailed product information including variants, pricing, specs, and materials. Fetch customer reviews, locate nearby stores and authorized dealers, and browse the Worn Wear used and refurbished gear selection.