Discover/Auchan API
live

Auchan APIauchan.fr

Access Auchan.fr grocery catalog via API. Search products, browse categories, fetch nutritional details, find stores by postal code, and get autocomplete suggestions.

Endpoint health
verified 7d ago
get_product_details
browse_category
get_stores
get_search_suggestions
get_categories
6/6 passing latest checkself-healing
Endpoints
6
Updated
15d ago

What is the Auchan API?

The Auchan.fr API covers 6 endpoints that expose the full French grocery catalog, including keyword search, category browsing, per-product nutritional and ingredient data, store locator, and autocomplete suggestions. The get_product_details endpoint returns over a dozen fields per product — ingredients, legal denomination, brand, origin country, and manufacturer contact — making it practical for nutrition tracking, price monitoring, and catalog aggregation.

Try it
Page number for pagination.
Search keyword (e.g. 'lait', 'fromage', 'beurre')
api.parse.bot/scraper/86e0680a-9895-4fa6-a201-a7734f094e13/<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/86e0680a-9895-4fa6-a201-a7734f094e13/search_products?page=1&query=lait' \
  -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 auchan-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.

"""Walkthrough: Auchan.fr grocery SDK — search, browse categories, get details, find stores."""
from parse_apis.Auchan_fr_API import Auchan, ProductNotFound

client = Auchan()

# Search for products by keyword; limit= caps total items fetched.
for product in client.product_summaries.search(query="fromage", limit=3):
    print(product.name, product.brand, product.rating)

# Drill into one product's full details via .first()
item = client.product_summaries.search(query="lait", limit=1).first()
if item:
    detail = item.details()
    print(detail.name, detail.brand, detail.description)

# Browse a category by constructing it from its ID
dairy = client.category(id="ca-n01")
for p in dairy.browse(limit=3):
    print(p.name, p.availability)

# List all categories
for cat in client.categories.list(limit=5):
    print(cat.name, cat.id)

# Find stores near a postal code
for store in client.stores.search(zipcode="59000", limit=3):
    print(store.name, store.distance, store.type_name)

# Typed error handling for a missing product
try:
    client.products.get(product_id="INVALID999")
except ProductNotFound as exc:
    print(f"Product not found: {exc.product_id}")

print("exercised: product_summaries.search / details / category.browse / categories.list / stores.search / products.get")
All endpoints · 6 totalmissing one? ·

Full-text search over Auchan.fr product catalog. Returns paginated product summaries matching the keyword query. Results include name, brand, rating, and availability. Pagination via page number; total_count reflects the server-side match count.

Input
ParamTypeDescription
pageintegerPage number for pagination.
queryrequiredstringSearch keyword (e.g. 'lait', 'fromage', 'beurre')
Response
{
  "type": "object",
  "fields": {
    "page": "integer, current page number",
    "query": "string, the search query used",
    "products": "array of product summary objects",
    "total_count": "integer, total number of products matching the query"
  },
  "sample": {
    "data": {
      "page": 1,
      "query": "lait",
      "products": [
        {
          "id": "61dece74-181e-4834-a413-f6fbcd725f24",
          "url": "https://www.auchan.fr/auchan-lait-demi-ecreme/pr-C1718543",
          "name": "AUCHAN Lait demi-écrémé",
          "brand": "AUCHAN",
          "rating": "4.9",
          "image_url": "https://cdn.auchan.fr/media/example/B2CD/",
          "productId": "C1718543",
          "attributes": "10x1l",
          "availability": "out_of_stock",
          "review_count": "82"
        }
      ],
      "total_count": 30
    },
    "status": "success"
  }
}

About the Auchan API

Product Search and Catalog Browsing

The search_products endpoint accepts a query string (e.g. 'lait', 'fromage') and returns paginated product summaries including name, brand, rating, and availability. Pagination is controlled by the page parameter; the total_count field reflects the full server-side match count so you can calculate how many pages exist. The browse_category endpoint works the same way but scopes results to a specific category: pass a category_id from get_categories and the API adds the ca- prefix automatically if omitted.

Product Detail and Nutritional Data

For any product ID returned by search or browse — formatted like C1177828get_product_details fetches the complete product record. Response fields include ingredients, legal_name, description, origin (with country of manufacture), contact (manufacturer details), and a features key-value map for additional attributes such as weight, allergens, or certifications. This endpoint is the primary source for nutrition and regulatory data within the catalog.

Category Tree and Store Locator

get_categories returns the full Auchan.fr navigation tree as an array of objects with id, name, and url. These IDs feed directly into browse_category for structured catalog traversal. The get_stores endpoint accepts a French zipcode (2–5 digits) and returns nearby Auchan locations with name, type, address, city, latitude, longitude, and distance. Coverage depends on actual store presence — some postal codes will return an empty list.

Search Suggestions

get_search_suggestions takes a query and returns an array of suggestion objects, each with text, url, and type — either 'keyword' or 'category'. Category suggestions include additional category and par fields for hierarchical context. Suggestions are generated from a server-side pre-cached set, so uncommon or misspelled queries may return an empty list.

Reliability & maintenanceVerified

The Auchan API is a managed, monitored endpoint for auchan.fr — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when auchan.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 auchan.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
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 French grocery price tracker by polling search_products with product keywords across categories.
  • Aggregate nutritional and ingredient data using get_product_details for meal planning or diet apps.
  • Power a store-finder feature by querying get_stores with user-supplied French postal codes.
  • Construct a category-based product browser using get_categories IDs passed into browse_category.
  • Implement autocomplete in a grocery shopping app using get_search_suggestions for live query refinement.
  • Compile a private product database including legal names and manufacturer contacts from get_product_details.
  • Cross-reference origin country data from the origin field to filter products by country of manufacture.
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 Auchan.fr have an official public developer API?+
Auchan.fr does not publish an official public developer API or documented REST interface for third-party access to its product catalog or store data.
What does `get_product_details` return beyond basic name and price?+
The endpoint returns ingredients, legal_name, description, origin (including country of manufacture), contact (manufacturer details), and a features object containing additional attributes such as allergen declarations or certifications. brand and rating are also included.
Are product prices returned by any endpoint?+
Price fields are not currently exposed in search results or product detail responses. The API covers catalog metadata, nutritional attributes, ratings, and store locations. You can fork it on Parse and revise it to add a pricing endpoint if that field becomes available.
How does pagination work across search and category endpoints?+
Both search_products and browse_category accept an optional page integer. search_products also returns total_count, which lets you compute total pages. browse_category does not currently expose a total count field, so you'll need to iterate until a page returns fewer results than expected.
Does the store locator cover all Auchan store formats in France?+
The get_stores endpoint returns stores with a type and type_name field, so different formats (hypermarket, supermarket, etc.) are distinguishable in the response. However, coverage is limited to France and depends on actual Auchan store presence — postal codes in areas without Auchan locations return an empty stores array. International Auchan markets are not covered. You can fork this API on Parse and revise it to target a different regional Auchan domain if needed.
Page content last updated . Spec covers 6 endpoints from auchan.fr.
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.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.
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.
superc.ca API
Search for products and browse categories at Super C, a Canadian grocery chain, then view detailed product information and find nearby store locations by postal code. Get real-time access to pricing, availability, and inventory across Super C's network.
coop.ch API
Search and browse Coop.ch's entire product catalog, including detailed pricing, product information, and category organization. Find specific groceries, compare items across categories, and access up-to-date pricing data from Switzerland's Coop supermarket.
instacart.com API
Search for grocery products across multiple retailers, view store locations and availability, and access detailed product information including prices and descriptions. Find the best deals and nearest stores offering the items you need.
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.