Discover/Carrefour API
live

Carrefour APIcarrefour.it

Access Carrefour Italy product catalog, nutritional data, store locations, categories, and live promotions via a structured REST API. 6 endpoints.

Endpoint health
verified 16h ago
get_product_details
get_online_grocery_categories
search_products
get_category_products
get_store_locations
6/6 passing latest checkself-healing
Endpoints
6
Updated
22d ago

What is the Carrefour API?

The Carrefour Italy API exposes 6 endpoints covering product search, category browsing, full product details (including nutrition and ingredients), store locations, and current promotions from carrefour.it. The get_product_details endpoint returns nutritional values, ingredient lists, EAN barcodes, and pricing in a single call, making it straightforward to build grocery apps, price trackers, or store finders against Italy's Carrefour catalog.

Try it
Page number (1-based)
Number of results per page
Search keyword (e.g. 'latte', 'pasta', 'birra')
api.parse.bot/scraper/66821404-7878-4fb4-804b-c5c956470aff/<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/66821404-7878-4fb4-804b-c5c956470aff/search_products?page=1&limit=5&query=latte' \
  -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-it-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.carrefour_italy_api import CarrefourItaly, Product, ProductDetail, Category, Store, Promotion, ProductNotFound

client = CarrefourItaly()

# Search for products by keyword
for product in client.products.search(query="pasta"):
    print(product.name, product.price, product.brand, product.dimension52)

# List all grocery categories
for cat in client.categories.list():
    print(cat.name, cat.slug)

# Browse products in a specific category via constructible Category
meat = client.category(slug="carne")
for item in meat.products():
    print(item.name, item.price, item.metric19)

# Get full product details with nutrition info
detail = client.productdetails.get(product_slug="carrefour-classic-latte-uht-parzialmente-scremato-1000-ml", ean="8012666051267")
print(detail.id, detail.slug, detail.ingredients, detail.description)

# Find stores in a city
for store in client.stores.list(city="MILANO"):
    print(store.name, store.address, store.city, store.type)

# Check current promotions
for promo in client.promotions.list():
    print(promo.name, promo.price, promo.metric19, promo.brand)
All endpoints · 6 totalmissing one? ·

Full-text search over Carrefour Italy's online grocery catalog. query matches product names; results are paginated with configurable page size. Each product includes name, EAN id, price, original price (metric19), brand, category slug, pack size (dimension52), and food/nonfood classification (dimension53).

Input
ParamTypeDescription
pageintegerPage number (1-based)
limitintegerNumber of results per page
queryrequiredstringSearch keyword (e.g. 'latte', 'pasta', 'birra')
Response
{
  "type": "object",
  "fields": {
    "page": "integer — current page number",
    "query": "string — the search keyword used",
    "products": "array of product objects with name, id, price, metric19, brand, category, dimension52, dimension53",
    "total_results": "integer — number of products returned on this page"
  },
  "sample": {
    "data": {
      "page": 1,
      "query": "latte",
      "products": [
        {
          "id": "8030705015322",
          "name": "Polenghi Lombardo Latte 100% italiano Parzialmente Scremato 1 L",
          "brand": "Polenghi Lombardo",
          "price": "0.75",
          "category": "latte_uht",
          "metric19": "1.25",
          "dimension52": "1000.0 ml",
          "dimension53": "food"
        }
      ],
      "total_results": 25
    },
    "status": "success"
  }
}

About the Carrefour API

Product Search and Category Browsing

The search_products endpoint accepts a query string (e.g. 'pasta', 'latte') and returns a paginated list of matching products. Each item includes name, id, price, brand, category, and the dimension fields dimension52 and dimension53. Pagination is controlled with page (1-based) and limit parameters. To browse without a keyword, get_category_products takes a category_slug — such as 'frutta-e-verdura' or 'carne' — and returns all products listed under that category. Use get_online_grocery_categories first to retrieve the full list of valid slugs along with their name, slug, and url.

Product Details and Nutritional Data

get_product_details requires two inputs: a product_slug (the URL-friendly identifier) and an ean barcode string. The response includes the full data object with pricing and brand, a nutrition object with key-value pairs such as Grassi (fats), Proteine (proteins), and Sale (salt), an ingredients string, a description string, and an other_info object for manufacturer or origin data when available. If nutritional or ingredient data is not listed on the product page, those fields return as empty strings rather than null.

Store Locations and Promotions

get_store_locations returns Carrefour store details across Italy. An optional city parameter (case-insensitive) filters results to a specific city such as 'MILANO' or 'Torino'. Each store record includes name, address, city, province, cap (postal code), latitude, longitude, hours, type, and store_type. The total field tells you how many stores matched the filter. The get_promotions endpoint returns products currently on promotion; comparing price against metric19 (the original price field) reveals the active discount amount for each item.

Reliability & maintenanceVerified

The Carrefour API is a managed, monitored endpoint for carrefour.it — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when carrefour.it 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.it 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
16h ago
Latest check
6/6 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
  • Build a grocery price tracker that monitors price vs metric19 from get_promotions to alert users when items go on sale.
  • Populate a nutrition database by pulling nutrition and ingredients fields from get_product_details using EAN barcodes.
  • Create a store finder app using get_store_locations with city filtering and latitude/longitude for map rendering.
  • Aggregate category-level product catalogs via get_category_products for comparison shopping or inventory analysis.
  • Track brand presence across Carrefour Italy's catalog by filtering the brand field in search_products results.
  • Generate promotional deal digests by detecting discount depth from price and metric19 in get_promotions responses.
  • Sync product slugs and EANs from search results into a downstream pipeline feeding get_product_details for full data enrichment.
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 Italy have an official public developer API?+
Carrefour does not publish a public developer API for carrefour.it. This Parse API provides structured access to the same product, store, and promotion data available on the site.
What does `get_product_details` return, and how do I call it?+
It returns a data object with name, price, brand, and category; a nutrition object with per-nutrient key-value pairs; an ingredients string; a description string; and an other_info object. You must supply both the product_slug and the ean barcode as inputs — neither alone is sufficient. Both can be obtained from the id and slug fields returned by search_products or get_category_products.
How does pagination work in `search_products`?+
The endpoint accepts a page parameter (1-based integer) and a limit parameter to control page size. The response includes a total_results field reflecting the count of products returned on that page — not the grand total across all pages. To iterate through all results, increment page until total_results is less than limit.
Does the API return user reviews or ratings for products?+
Not currently. The API covers product details including nutrition, ingredients, pricing, and promotions, but does not expose customer ratings or review text. You can fork this API on Parse and revise it to add an endpoint targeting product review data.
Are store hours returned in a structured format or as plain text?+
The hours field in get_store_locations responses is returned as a string rather than a structured object. Parsing into day-by-day slots would need to be done on the client side. The endpoint does return type and store_type as separate fields to help distinguish hypermarkets from supermarkets and other formats.
Page content last updated . Spec covers 6 endpoints from carrefour.it.
Related APIs in Food DiningSee all →
carrefour.fr API
carrefour.fr API
carrefour.eu API
Search and browse Carrefour's European online product catalog to access pricing, promotions, availability, and detailed product information including nutritional data. Retrieve comprehensive product details across categories to compare prices and find current deals in real-time.
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.
coop.it API
Search and browse Coop Italy's product catalog across categories and subcategories to find detailed information about items, prices, and current offers. Discover product recommendations and get comprehensive details including availability and promotional deals to help you shop more efficiently.
spesaonline.conad.it API
Find nearby Conad supermarkets and view their current promotional flyers to discover product prices and discounts. Access detailed store information like location and hours to plan your shopping trips.
compraonline.alcampo.es API
Search and browse Alcampo's online product catalog, view detailed product information, explore categories, check current promotions, and find nearby store locations across Spain. Access real-time data from Alcampo's online shopping platform to discover products, compare prices, and locate physical stores.
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.
migros.ch API
Search and browse Migros' product catalog to find items by name or category, view detailed product information, and discover current promotional offers. Get everything you need to shop smarter at Switzerland's leading supermarket.