Discover/Carrefour API
live

Carrefour APIcarrefour.eu

Search and retrieve Carrefour Belgium product data including prices, availability, Nutri-Score, and nutritional info via 2 structured endpoints.

This API takes change requests — .
Endpoint health
verified 6h ago
get_product_details
search_products
2/2 passing latest checkself-healing
Endpoints
2
Updated
12d ago

What is the Carrefour API?

The Carrefour Belgium API provides access to the full Carrefour.be product catalog through 2 endpoints, covering search, category browsing, pricing, stock availability, and per-product nutritional data. The search_products endpoint returns paginated results with price, brand, and package info, while get_product_details exposes structured nutritional values, Nutri-Score grades, and ingredient descriptions for individual products.

This call costs1 credit / call— charged only on success
Try it
Page number, 0-indexed.
Search keyword (e.g., 'lait', 'chocolat'). If omitted, browses the specified category.
Category ID to browse (e.g., 'ros002' for Crèmerie). Omitting returns all products.
api.parse.bot/scraper/ff0c0252-2e26-4e1c-9bfc-f1f76f2d3c33/<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/ff0c0252-2e26-4e1c-9bfc-f1f76f2d3c33/search_products?page=0&query=lait&category_id=products' \
  -H 'X-API-Key: $PARSE_API_KEY'
All endpoints · 2 totalmissing one? ·

Search for products by keyword or browse by category. Returns a paginated list of products with prices, stock availability, promotion info, and basic details. Results are returned 36 per page. Pagination is zero-indexed. At least one of query or category_id should be provided for meaningful results.

Input
ParamTypeDescription
pageintegerPage number, 0-indexed.
querystringSearch keyword (e.g., 'lait', 'chocolat'). If omitted, browses the specified category.
category_idstringCategory ID to browse (e.g., 'ros002' for Crèmerie). Omitting returns all products.
Response
{
  "type": "object",
  "fields": {
    "page": "integer current page number",
    "products": "array of product objects with product_id, name, brand, price, currency, image_url, url, package_info, price_per_unit, availability, promo_text, promo_start_date, and promo_end_date",
    "page_size": "integer number of results per page (36)",
    "total_count": "integer total number of matching products"
  },
  "sample": {
    "data": {
      "page": 0,
      "products": [
        {
          "url": "https://www.carrefour.be/fr/lourson-gateaux-chocolat-fourre-lait-150g/04971931.html",
          "name": "L'Ourson Gâteaux Chocolat Fourré Lait 150g",
          "brand": "LU",
          "price": 3.69,
          "currency": "EUR",
          "image_url": "https://cdn.carrefour.eu/420_04971931_T1.webp",
          "product_id": "04971931",
          "availability": 217,
          "package_info": "La pièce",
          "price_per_unit": "24,60 €/kg"
        }
      ],
      "page_size": 36,
      "total_count": 387
    },
    "status": "success"
  }
}

About the Carrefour API

Search and Browse Products

The search_products endpoint accepts a query string (e.g., 'lait', 'chocolat') and/or a category_id (e.g., 'ros002' for Crèmerie) to return a paginated list of matching products. Each page contains up to 36 results, and pagination is zero-indexed via the page parameter. Each product object in the response includes product_id, name, brand, price, currency, image_url, url, package_info, price_per_unit, and availability status. The total_count field lets you calculate how many pages to fetch.

Product Detail and Nutritional Data

The get_product_details endpoint takes a full product page url — obtained from a search_products result — and returns extended product information. This includes a description with ingredient and usage details, a nutri_score field (grades A–E, or null when not present on the product page), and a nutritional_info array of label/value pairs covering standard values such as energy, fat, carbohydrates, protein, and salt.

Coverage and Scope

This API covers the Carrefour Belgium (carrefour.be) product catalog, with product text and categories served in French. Category IDs such as 'ros002' can be used to browse specific departments without a keyword query. Nutritional data is returned only when the product page itself carries that information — some products may return an empty nutritional_info array and a null nutri_score.

Reliability & maintenanceVerified

The Carrefour API is a managed, monitored endpoint for carrefour.eu — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when carrefour.eu 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 carrefour.eu 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
6h ago
Latest check
2/2 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
  • Track price changes for specific grocery products across Carrefour Belgium's catalog using price and price_per_unit fields.
  • Build a nutrition comparison tool by fetching nutritional_info and nutri_score for products in a given category.
  • Aggregate stock availability data across product categories using the availability field from search_products.
  • Populate a recipe ingredient shopping list with matched Carrefour products, prices, and package sizes.
  • Monitor a specific product category (e.g., dairy via category_id: 'ros002') for new product listings using total_count and pagination.
  • Filter products by brand using the brand field returned from search results to compare private-label vs. named-brand pricing.
  • Extract ingredient lists and allergen-relevant descriptions from get_product_details for dietary filtering applications.
Pricing & limitsSee full pricing →
TierPriceCredits/monthRate limit
Free$0/mo2005 req/min
Hobby$30/mo1,00020 req/min
Developer$100/mo5,000100 req/min
Team$300/mo20,000300 req/min
Company$1,000/mo100,000500 req/min

Each endpoint has a fixed posted price per successful call — most fall between 1 and 10 credits — shown on this API's page before you run it. Exceeding the rate limit returns a 429 response. Authenticate with the X-API-Key header.

Frequently asked questions
Does Carrefour have an official public developer API?+
Carrefour does not publish a public developer API for its Belgian storefront product catalog. There is no documented REST or GraphQL API available to third-party developers at carrefour.be.
What does `search_products` return beyond the product name and price?+
Each result in the products array includes product_id, brand, currency, image_url, url, package_info (e.g., weight or volume), price_per_unit (unit pricing such as price per kg or liter), and an availability flag. The url field is what you pass to get_product_details for deeper information.
Is nutritional data available for every product?+
No. The nutritional_info array and nutri_score field in get_product_details are populated only when the product page itself contains that data. For products without nutritional labeling on their page — such as some non-food items or loosely described products — both fields will be empty or null.
Does the API cover Carrefour stores in France, Spain, or other countries?+
The API currently covers the Carrefour Belgium (carrefour.be) catalog. Other Carrefour country storefronts are not included. You can fork this API on Parse and revise it to add endpoints targeting other regional Carrefour domains.
Can I retrieve customer reviews or promotions data for products?+
Customer reviews are not currently returned by either endpoint. Promotional pricing may be reflected in the price field when a promotion is active on the product page, but there is no dedicated promotions endpoint. You can fork this API on Parse and revise it to add a promotions or reviews endpoint.
Page content last updated . Spec covers 2 endpoints from carrefour.eu.
Related APIs in EcommerceSee all →