Discover/Brico API
live

Brico APIbrico.be

Search Brico.be's home improvement catalog via API. Returns product titles, prices, availability, ratings, brand, and category data for Belgian DIY products.

This API takes change requests — .
Endpoint health
verified 2h ago
search_products
1/1 passing latest checkself-healing
Endpoints
1
Updated
3h ago

What is the Brico API?

The Brico.be API gives developers access to Belgium's home improvement retailer through 1 endpoint that returns up to 100 products per page, including price, brand, rating, category, and availability data. The search_products endpoint accepts free-text queries in French, Dutch, or English and supports pagination and sort controls, making it straightforward to build product finders, price trackers, or purchasing tools against Brico.be's full catalog.

This call costs1 credit / call— charged only on success
Try it
Page number for paginated results (1-based).
Sort order for results. When omitted, results are sorted by popularity/relevance.
Search term for products (e.g. 'wood shelves', 'vis', 'etagere').
Number of products per page (1-100).
api.parse.bot/scraper/bc8a561c-9a09-4e2d-b5b1-18f24dd97173/<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/bc8a561c-9a09-4e2d-b5b1-18f24dd97173/search_products?page=1&sort=default&query=wood+shelves&page_size=20' \
  -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 brico-be-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: brico_be_api SDK — bounded, re-runnable; every call capped."""
from parse_apis.brico_be_api import Brico, Sort, InvalidInput

client = Brico()

# Search for wood shelves sorted by price ascending
for product in client.products.search(query="wood shelves", sort=Sort.PRICE_ASC, limit=3):
    print(product.title, product.price, product.currency)

# Take one product for detail inspection
item = client.products.search(query="wood shelves", limit=1).first()
if item:
    print(item.title, item.brand, item.category, item.rating)

# Typed error handling around a search call
try:
    for p in client.products.search(query="etagere", sort=Sort.NEWEST, limit=2):
        print(p.id, p.title, p.availability)
except InvalidInput as e:
    print("invalid input:", e)

print("exercised: products.search")
All endpoints · 1 totalmissing one? ·

Full-text search over Brico.be's product catalog. Returns paginated product listings with price, availability, ratings, and category information. When the query matches an exact category, the upstream redirects and an empty list is returned with the redirect URL.

Input
ParamTypeDescription
pageintegerPage number for paginated results (1-based).
sortstringSort order for results. When omitted, results are sorted by popularity/relevance.
queryrequiredstringSearch term for products (e.g. 'wood shelves', 'vis', 'etagere').
page_sizeintegerNumber of products per page (1-100).
Response
{
  "type": "object",
  "fields": {
    "page": "current page number",
    "products": "array of product objects with id, title, price, category, brand, rating, etc.",
    "page_size": "number of products per page",
    "total_results": "total number of matching products across all pages"
  },
  "sample": {
    "data": {
      "page": 1,
      "products": [
        {
          "id": "10296378",
          "ean": "7290112632685",
          "link": "/fr/meubles-rangements/meubles-buanderie-garage-cave/etageres-rangement-etageres-rayonnage/etageres-rangement/etagere-keter-fused-152x122x45cm-charge-max-180kg-noir/10296378",
          "brand": "Curver",
          "image": "https://d2fb1ew6v6wv87.cloudfront.net/products/10296378/s01/424x424/origin.webp",
          "price": 142,
          "title": "Étagère Keter - Fused - 152x122x45cm - Charge Max. 180kg - Noir",
          "rating": 5,
          "seller": "Brico",
          "category": "Etagères rangement",
          "currency": "EUR",
          "online_only": false,
          "availability": "A domicile/ Reserve&Go",
          "discontinued": false,
          "review_count": 6
        }
      ],
      "page_size": 20,
      "total_results": 20
    },
    "status": "success"
  }
}

About the Brico API

What the API returns

The search_products endpoint accepts a query string and returns a paginated list of product objects from Brico.be's catalog. Each product in the products array includes an id, title, price, brand, category, and rating. The total_results field tells you how many products matched across all pages, and page_size (1–100) lets you control how many appear per response.

Searching and sorting

The query parameter accepts product names, material types, or category keywords in any language commonly used on the Belgian site (French, Dutch, or English terms all work — e.g. vis, wood shelves, etagere). The optional sort parameter changes result ordering; when omitted, results default to relevance/popularity order. The page parameter is 1-based and works alongside page_size for standard offset pagination.

Category redirect behavior

When a query exactly matches a Brico.be category name rather than a product keyword, the upstream redirects rather than returning product results. In that case the API returns an empty products array along with the redirect URL. This is expected behavior for category-level terms, not an error — adjust your query to be more specific or use a product-level term to get product listings.

Coverage scope

The API covers Brico.be's French-language catalog as it appears in public product listings. Data such as stock counts per store location, loyalty pricing, and product specification sheets that sit behind login or store-selector flows are not exposed by the current endpoint.

Reliability & maintenanceVerified

The Brico API is a managed, monitored endpoint for brico.be — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when brico.be 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 brico.be 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
1/1 endpoint 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 Belgian DIY product search widget that shows live Brico.be prices and ratings.
  • Track price changes over time for specific products by polling search_products with a product name or SKU.
  • Compare brand availability across a product category (e.g. all wall shelf brands) using the brand and category fields.
  • Populate an affiliate product feed with Brico.be titles, prices, and ratings for home improvement content.
  • Aggregate top-rated products in a category by filtering results on the rating field.
  • Monitor availability status for restocking alerts on frequently out-of-stock DIY items.
  • Build a multilingual product lookup tool by querying in French or Dutch and normalizing results via the structured response fields.
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 Brico.be offer an official developer API?+
Brico.be does not publish a public developer API or documented data feed. The Parse API is the practical way to access structured product data from the site.
What does the `search_products` endpoint return for each product?+
Each object in the products array includes the product id, title, price, category, brand, and rating. The response also includes pagination metadata: page, page_size, and total_results.
Why does my search return an empty product list?+
If your query exactly matches a Brico.be category name, the site redirects instead of returning product listings. The API surfaces this as an empty products array plus a redirect URL. Use a more specific product-level term (e.g. tablette murale bois instead of tablettes murales) to get product results.
Does the API return per-store stock levels or store location data?+
Not currently. The API returns availability status as part of the product object but does not break stock down by individual Brico.be store locations. You can fork the API on Parse and revise it to add a store-level availability endpoint if that data is accessible from a public product page.
Can I retrieve a single product's full specification sheet or technical details?+
Not currently. The search_products endpoint returns listing-level fields (title, price, brand, category, rating) rather than the full specification detail found on an individual product page. You can fork the API on Parse and revise it to add a product-detail endpoint that targets a specific product ID.
Page content last updated . Spec covers 1 endpoint from brico.be.
Related APIs in EcommerceSee all →
mediamarkt.be API
Search and browse MediaMarkt Belgium's product catalog to find electronics with detailed specifications, pricing, and available variants across all categories. Get comprehensive product information including descriptions and technical details to compare items before purchase.
alternate.be API
Search for products on Alternate Belgium and instantly access live prices, stock availability, technical specifications, customer reviews, and current deals across their entire catalog. Browse their complete category structure to find exactly what you need and compare products before making a purchase decision.
coolblue.be API
Search and browse electronics products from Coolblue Belgium, including CPUs, GPUs, and smartphones, with instant access to detailed specifications, pricing, and availability. Find exactly what you need by category or search query, and check real-time stock and price information across their entire catalog.
gamma.be API
Search and browse products from Gamma.be to find home improvement items with real-time pricing and detailed specifications. Get category listings and search suggestions to easily discover what you need at Belgium's leading home improvement store.
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.
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.
manomano.fr API
Search ManoMano.fr products by keyword and browse listings with prices, brands, images, and product URLs.
bauhaus.info API
Search for hardware products and check real-time availability across BAUHAUS Germany store locations to find exactly what you need and where to get it. View detailed product information including specifications and pricing to make informed purchasing decisions before visiting a store.