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.

Endpoint health
verified 7d ago
search_products
get_product_details
2/2 passing latest checkself-healing
Endpoints
2
Updated
26d 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.

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'
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 carrefour-eu-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.

"""Walkthrough: Carrefour Belgium SDK — search products and inspect nutritional details."""
from parse_apis.carrefour_belgium_api import Carrefour, ProductNotFound

client = Carrefour()

# Search for dairy products — limit= caps total items fetched across all pages.
for product in client.products.search(query="lait", limit=5):
    print(product.name, product.price, product.currency, product.availability)

# Drill into the first result's full details (description, nutrition).
product = client.products.search(query="chocolat", limit=1).first()
if product:
    details = product.details()
    print(details.name, details.brand, details.nutri_score)
    for nutrient in details.nutritional_info[:3]:
        print(nutrient.label, nutrient.value)

# Typed error handling: catch a missing product.
try:
    bad = client.products.search(query="nonexistent_xyz_999", limit=1).first()
    if bad:
        bad.details()
except ProductNotFound as exc:
    print(f"Product gone: {exc.url}")

print("exercised: products.search / product.details / ProductNotFound")
All endpoints · 2 totalmissing one? ·

Search for products by keyword or browse by category. Returns a paginated list of products with prices, stock availability, 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, and availability",
    "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
7d 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/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 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 →
carrefour.fr API
carrefour.fr API
carrefour.it API
Search and browse Carrefour Italy's product catalog across categories, view detailed product information, find nearby store locations, and discover current promotions all in one place. Explore online grocery selections and compare products by price, brand, and availability.
carrefour.com.ar API
Search for products across Carrefour's online store and access detailed product information, categories, and news articles about the retailer. You can also retrieve financial data about Carrefour to stay informed on company performance and market news.
continente.pt API
Browse and retrieve product data from Continente.pt, Portugal's leading supermarket chain. Search by keyword, browse categories, fetch full product details including nutritional info, and access current promotions and new arrivals.
auchan.fr API
Search and compare Auchan grocery products with real-time prices and availability. Search by keyword, browse categories, retrieve detailed product information, find nearby stores, and get search suggestions.
ocado.com API
Search and browse Ocado UK's grocery catalog, view detailed product information including nutritional data, and discover related items to add to your cart. Get instant search suggestions and manage your shopping cart contents all in one place.
euronics.it API
Browse and search the complete Euronics Italy product catalog with real-time pricing information across all categories. Find exactly what you're looking for with powerful keyword search or explore products by category with full pagination support.
edeka24.de API
Browse and search EDEKA24's product catalog, view detailed product information and categories, and manage your shopping cart all programmatically. Authenticate your account, add items to your cart, and proceed to checkout seamlessly through automated requests.