Discover/Rexel API
live

Rexel APIrexel.fr

Access Rexel France's professional electrical supply catalog via API. Search products, fetch full SKU details, and browse the hierarchical category tree.

Endpoint health
verified 2h ago
search_products
get_product
get_categories
3/3 passing latest checkself-healing
Endpoints
3
Updated
3h ago

What is the Rexel API?

The Rexel France API exposes 3 endpoints covering the full professional electrical supply catalog at rexel.fr. Use search_products to run full-text queries across thousands of SKUs — returning brand, stock status, and image URL per result — then drill into any item with get_product for detailed classification, quantity constraints, markers, and channel availability. A third endpoint delivers the complete hierarchical category tree.

Try it
Page number for results (1-based).
Number of products per page (max 50).
Sort order for results.
Search query text (product name, reference, EAN, keyword).
api.parse.bot/scraper/b87182a0-0ccb-4d0a-ada5-ba3e0aaa64cf/<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/b87182a0-0ccb-4d0a-ada5-ba3e0aaa64cf/search_products?page=1&size=10&sort=relevance&query=disjoncteur' \
  -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 rexel-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: Rexel France electrical supply catalog — search, detail, categories."""
from parse_apis.rexel_fr_api import Rexel, Sort, ProductNotFound

client = Rexel()

# Search for circuit breakers, sorted by relevance
for product in client.products.search(query="disjoncteur", sort=Sort.RELEVANCE, limit=3):
    print(product.name, "|", product.brand_name, "| SKU:", product.sku)

# Drill into the first result for full details
hit = client.products.search(query="cable electrique", limit=1).first()
if hit:
    detail = client.products.get(sku=hit.sku)
    print(detail.name, "—", detail.description_short)
    print("Brand:", detail.brand_name, "| In stock:", detail.usually_in_stock)
    for marker in detail.markers:
        print("  Marker:", marker.code, marker.label)

# Browse the category tree
for cat in client.categories.list(depth=2, limit=5):
    print(cat.code, cat.name)

# Handle a missing product gracefully
try:
    client.products.get(sku="0000000000")
except ProductNotFound as exc:
    print(f"Product not found: {exc}")

print("exercised: products.search / products.get / categories.list")
All endpoints · 3 totalmissing one? ·

Full-text search across Rexel France's catalog of professional electrical products. Results are auto-iterated across pages. Each product includes SKU, brand, description, stock status, and image URL.

Input
ParamTypeDescription
pageintegerPage number for results (1-based).
sizeintegerNumber of products per page (max 50).
sortstringSort order for results.
queryrequiredstringSearch query text (product name, reference, EAN, keyword).
Response
{
  "type": "object",
  "fields": {
    "size": "integer",
    "total": "integer",
    "products": "array of product summaries",
    "last_page": "integer",
    "current_page": "integer"
  },
  "sample": {
    "data": {
      "size": 5,
      "total": 42973,
      "products": [
        {
          "sku": "71941447",
          "upc": "3606481381323",
          "name": "Acti9 iDT40T - Disjoncteur modulaire - 1P+N - 10A - Courbe C - 4500A/6kA",
          "status": "ACTIVE",
          "qty_min": 1,
          "image_url": "https://rexelws.proplanet.nl/mediaservice.svc/getmedia/71941447/THUMBNAIL",
          "brand_name": "Schneider Electric",
          "category_url": "/Marketing-Rexel/...",
          "qty_multiple": 1,
          "qty_unit_name": "Pièce",
          "usually_in_stock": true,
          "description_short": "Ce disjoncteur modulaire de la gamme Acti9 iDT40T est dédié aux applications tertiaires.",
          "manufacturer_name": "Schneider Electric",
          "rexel_part_number": "SCHA9P22610",
          "manufacturer_product_id": "A9P22610"
        }
      ],
      "last_page": 8595,
      "current_page": 1
    },
    "status": "success"
  }
}

About the Rexel API

Search and Product Data

The search_products endpoint accepts a required query parameter (product name, reference, EAN, or keyword) and returns paginated results with up to 50 items per page. Each result in the products array includes the SKU, brand, description, stock status, and image URL. The total and last_page fields let you iterate through the full result set programmatically. Optional sort and size parameters give you control over ordering and page density.

Full Product Detail

Once you have a SKU from search results, get_product returns the complete record for that item. Response fields include sku, upc, name, brand_name, brand_code, status, types, channels, webshop_url, and a markers array of objects with code and label — used by Rexel to flag product characteristics such as hazardous material designations or energy classifications. This endpoint is the right place to retrieve quantity constraints and product classification before building a procurement or quoting workflow.

Category Tree

The get_categories endpoint returns Rexel France's full product taxonomy as a nested structure. Each category object carries a code, name, category_url, position, and a children array for subcategories. The optional depth parameter (1–3) limits how many levels of nesting are returned, which is useful when you only need top-level families versus a full deep tree for navigation or faceted filtering.

Reliability & maintenanceVerified

The Rexel API is a managed, monitored endpoint for rexel.fr — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when rexel.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 rexel.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
2h ago
Latest check
3/3 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 procurement tool that searches Rexel's catalog by EAN or reference and retrieves live stock status.
  • Sync Rexel product data — including brand, UPC, and images — into an internal product information system.
  • Generate a category-mapped navigation UI for electrical supply products using the hierarchical category tree.
  • Monitor marker flags (e.g. hazardous material codes) across a defined set of SKUs for compliance tracking.
  • Cross-reference Rexel SKUs with your own inventory using the upc field returned by get_product.
  • Build a quoting tool that checks product status and channel availability before adding items to an order.
  • Index Rexel's category structure to drive faceted search or product classification in a B2B purchasing app.
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 Rexel France have an official public developer API?+
Rexel does not publish a public developer API for rexel.fr. Access to catalog data is not available through any documented official developer program for third-party use.
What does the `markers` field in `get_product` contain?+
The markers field is an array of objects, each with a code and a label. Rexel uses markers to flag product-level attributes such as energy class designations, hazardous material indicators, or promotional tags. The specific markers present vary by product.
Does the API return pricing or net customer prices?+
No pricing fields are currently returned by any of the three endpoints. The API covers product identity (SKU, UPC, name), brand, stock status, classification, markers, and category structure. You can fork this API on Parse and revise it to add a pricing endpoint if that data becomes accessible.
Is the catalog limited to a specific region or Rexel branch?+
The API covers the rexel.fr catalog, which is the French market. It does not cover other Rexel country sites such as rexel.de or rexel.co.uk. You can fork this API on Parse and revise it to point at another Rexel country domain if needed.
How does pagination work in `search_products`?+
Results are paginated using the page (1-based) and size (max 50) parameters. The response includes total, current_page, and last_page fields so you can iterate through the full result set by incrementing page until you reach last_page.
Page content last updated . Spec covers 3 endpoints from rexel.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.
cityelectricsupply.com API
Search and browse City Electric Supply's product catalog across categories, view detailed product information with localized pricing and inventory based on a ZIP code, and manage a shopping cart. Access product details and real-time stock availability for any area.
cedeo.fr API
Search for plumbing and heating products on CEDEO, view detailed product information with variants, and locate nearby agency stores. Access comprehensive product catalogs, specifications, and inventory across CEDEO's retail network.
carrefour.fr API
carrefour.fr API
screwfix.com API
Access Screwfix's full product catalog — browse category hierarchies, retrieve paginated product listings with pricing and ratings, fetch detailed product specifications, and search by keyword. Ideal for price monitoring, product research, and catalog analysis.
manomano.fr API
Search ManoMano.fr products by keyword and browse listings with prices, brands, images, and product URLs.
fnac.com API
Search for electronics and cultural products on Fnac while accessing detailed product information, customer reviews, current deals, and flash sales all in one place. Get comprehensive insights including pricing, specifications, and promotional offers to make informed shopping decisions.
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.
Rexel France API – Products, Search & Categories · Parse