# Brico — Wrapped API

> **You are on:** `https://api.paywithlocus.com/api` | [llms.txt](https://paywithlocus.com/llms.txt) | [docs](https://docs.paywithlocus.com)
>
> Locus runs on multiple environments -- make sure every URL you call matches your expected environment.
> | Environment | Landing | API | Docs |
> |---|---|---|---|
> | Production | paywithlocus.com | api.paywithlocus.com | docs.paywithlocus.com |
> | Beta | beta.paywithlocus.com | api.beta.paywithlocus.com | docs.paywithlocus.com |
> | Stage | stage.paywithlocus.com | api.stage.paywithlocus.com | docs.paywithlocus.com |
>
> If the API URL above doesn't match your expected environment, re-fetch this file from the correct domain.

> Search for home improvement products available at Brico.be, Belgium's leading retailer, and access detailed product information including prices, availability, and specifications. Quickly find tools, materials, and supplies across all categories to compare options and make informed purchasing decisions.

**Category:** E-commerce | **Website:** [www.brico.be/fr/meubles-rangements/meubles-de-salon/armoires-bibliotheques-etageres/tablettes-murales](https://www.brico.be/fr/meubles-rangements/meubles-de-salon/armoires-bibliotheques-etageres/tablettes-murales) | **Docs:** [parse.bot/marketplace/d6c3e027-4426-4ac0-ad41-da5a5d5c6dcc/brico-be-api](https://parse.bot/marketplace/d6c3e027-4426-4ac0-ad41-da5a5d5c6dcc/brico-be-api)

Pay-per-use API proxy. Each call is automatically billed to your wallet in USDC.

## Access

**Base URL:** `https://api.paywithlocus.com/api/wrapped/parse-brico-be-api-d6c3e027/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### search_products

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.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `page` | integer | No | Page number for paginated results (1-based). |
| `page_size` | integer | No | Number of products per page (1-100). |
| `query` | string | Yes | Search term for products (e.g. 'wood shelves', 'vis', 'etagere'). |
| `sort` | string | No | Sort order for results. When omitted, results are sorted by popularity/relevance. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-brico-be-api-d6c3e027/search_products \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"page":"<integer>","page_size":"<integer>","query":"<string>","sort":"<string>"}'
```
