Discover/Cedeo API
live

Cedeo APIcedeo.fr

Access Cedeo.fr product listings, detailed specs, category browsing, product variants, and agency locations across France via a structured REST API.

Endpoint health
verified 2d ago
get_category
get_product_variants
search_products
get_product_detail
get_agency_locator
5/5 passing latest checkself-healing
Endpoints
5
Updated
26d ago

What is the Cedeo API?

The Cedeo.fr API exposes 5 endpoints covering product search, full product detail pages, category browsing, variant tables, and agency location data from cedeo.fr, France's professional plumbing and heating supply retailer. The get_product_detail endpoint returns up to a dozen structured fields per product including price_ttc, specifications, manufacturer_ref, and image URLs — making it straightforward to build product catalogs or pricing tools against Cedeo's inventory.

Try it
Page number for pagination, starts at 1
Search keyword (e.g. 'robinet', 'chaudiere')
api.parse.bot/scraper/12cc244a-218a-4a55-8b6a-06942cad8605/<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/12cc244a-218a-4a55-8b6a-06942cad8605/search_products?page=1&query=robinet' \
  -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 cedeo-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: CEDEO API — search products, drill into details and variants, list agencies."""
from parse_apis.cedeo_api import Cedeo, ProductNotFound

client = Cedeo()

# Search for plumbing products — limit= caps total items fetched across pages.
for product in client.products.search(query="robinet", limit=5):
    print(product.name, product.brand, product.cedeo_ref)

# Drill into the first result for full details.
product = client.products.search(query="chaudiere", limit=1).first()
if product:
    detail = product.details()
    print(detail.name, detail.price_ttc, detail.manufacturer_ref)
    print("Images:", len(detail.images), "Specs:", len(detail.specifications))

# List variants for a product family.
if product:
    for variant in product.variants.list(limit=3):
        print(variant.name, variant.supplierReference, variant.brandName)

# Browse agencies across France.
for agency in client.agencies.list(limit=3):
    print(agency.name, agency.slug, agency.id)

# Typed error handling: catch when a product URL is invalid.
try:
    bad = client.products.search(query="robinet", limit=1).first()
    if bad:
        bad.details()
except ProductNotFound as exc:
    print(f"Product not found: {exc.url}")

print("exercised: products.search / product.details / product.variants.list / agencies.list")
All endpoints · 5 totalmissing one? ·

Search for products by keyword query on cedeo.fr. Returns up to 24 products per page with name, brand, reference, and URL. Paginated by page number.

Input
ParamTypeDescription
pageintegerPage number for pagination, starts at 1
queryrequiredstringSearch keyword (e.g. 'robinet', 'chaudiere')
Response
{
  "type": "object",
  "fields": {
    "page": "integer, current page number",
    "query": "string, the search query submitted",
    "products": "array of product objects with cedeo_ref, url, name, and brand",
    "total_results": "integer or null, total number of matching products"
  },
  "sample": {
    "data": {
      "page": 1,
      "query": "robinet",
      "products": [
        {
          "url": "https://www.cedeo.fr/p/plomberie/robinet-arro-chrome-15x21-20x27-ref-70-5fg-A1039403",
          "name": "Robinet ARRO chromé 15x21-20x27 réf 70-5FG",
          "brand": "GRK",
          "cedeo_ref": "1039403"
        }
      ],
      "total_results": 19980
    },
    "status": "success"
  }
}

About the Cedeo API

Product Search and Detail

The search_products endpoint accepts a query string (e.g. robinet, chaudiere) and an optional page integer for pagination, returning up to 24 products per page. Each result includes cedeo_ref, name, brand, and a url pointing to the product page. The total_results field lets you calculate how many pages to iterate. To get full data on any individual product, pass its URL to get_product_detail, which returns price_ttc, a description string, a specifications object of key-value pairs, manufacturer_ref, and an images array alongside the standard name, brand, and reference fields.

Category Browsing and Product Variants

The get_category endpoint lets you browse products by category using a slug and category_id pair — both are required and correspond to Cedeo's category URL structure (e.g. slug fontes-sme, ID x3snv3_dig_2029325R7). The response mirrors the search shape: an array of product objects with cedeo_ref, url, name, and brand. For product families that come in multiple configurations, get_product_variants accepts an article_id and returns an articles array alongside axis and name fields describing the variant matrix.

Agency Locator

The get_agency_locator endpoint requires no inputs and returns the full list of CEDEO branch locations across France. Each agency object includes name, url, slug, and id, making it usable for store-finder features or for mapping branch coverage. This endpoint returns all agencies in a single call with no pagination.

Reliability & maintenanceVerified

The Cedeo API is a managed, monitored endpoint for cedeo.fr — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when cedeo.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 cedeo.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
2d ago
Latest check
5/5 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 price-monitoring tool that tracks price_ttc changes for plumbing products using search_products and get_product_detail.
  • Populate a product comparison page with specifications and manufacturer_ref fields from get_product_detail.
  • Create a category-level product feed by iterating get_category with known slug and category_id pairs.
  • Display a variant selector in a procurement app using the axis and articles arrays from get_product_variants.
  • Build a branch-finder feature using agency name, slug, and url data from get_agency_locator.
  • Sync a B2B purchasing catalog by paginating search_products for specific product families like boilers or fittings.
  • Cross-reference cedeo_ref and manufacturer_ref to match Cedeo listings against a supplier parts database.
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 Cedeo have an official public developer API?+
Cedeo does not publish an official public developer API or documented data access program. This Parse API provides structured access to product and agency data from cedeo.fr.
What does `get_product_detail` return beyond the basic name and reference?+
It returns price_ttc (tax-inclusive price), a description string, a specifications object of key-value attribute pairs, manufacturer_ref, a cedeo_ref, brand, and an images array of product image URLs. Not all fields are guaranteed on every product — some listings may have null or missing specs depending on how the product is listed on cedeo.fr.
Does the API return stock availability or inventory levels?+
Not currently. The API covers product names, prices, specifications, references, and agency locations, but does not expose real-time stock or availability per agency. You can fork this API on Parse and revise it to add an endpoint targeting stock-level data.
How does pagination work in `search_products`?+
Pass an integer page parameter starting at 1. Each page returns up to 24 products. The total_results field (integer or null) indicates the full match count, so you can calculate total pages by dividing by 24. If total_results is null, the source did not return a count for that query.
Does `get_category` support filtering by brand or price range?+
The endpoint currently accepts only slug and category_id and returns all products in that category without additional filter parameters. The response includes brand per product, so client-side filtering is possible. You can fork this API on Parse and revise it to pass additional filter parameters if the category supports them.
Page content last updated . Spec covers 5 endpoints from cedeo.fr.
Related APIs in EcommerceSee all →
leroymerlin.fr API
Search and browse Leroy Merlin France's complete product catalog to find items by category, view pricing, product details, and compare offerings from Leroy Merlin and their online partners. Access real-time product information including names, IDs, URLs, and seller details to help you discover and evaluate home improvement and DIY products.
rexel.fr API
rexel.fr API
cea.com.br API
Search and browse C&A Brazil's product catalog across categories and subcategories, view detailed product information including prices and specifications, and read customer reviews to help with your shopping decisions. Find exactly what you're looking for with powerful product search functionality backed by the complete cea.com.br inventory.
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.
cel.ro API
cel.ro API
homedepot.com API
Search and browse Home Depot's product catalog to compare pricing, check real-time availability, and review detailed product specifications. Find products across all categories, look up store locations and hours, and check fulfillment options including in-store pickup and delivery.
hagebau.de API
Browse Hagebau's complete product catalog, search across thousands of items by category and brand, and check real-time store availability for building materials and home improvement products. Access detailed product specifications, filter by brand, and discover what's in stock at your nearest location.