# Leroy Merlin Portugal — 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 and browse Leroy Merlin Portugal's product catalog with detailed information, pricing, and categories, while also discovering upcoming workshops and store-specific schedules. Find exactly what you need across their inventory and plan your DIY projects with their available training sessions.

**Category:** E-commerce | **Website:** [leroymerlin.pt/](https://leroymerlin.pt/) | **Docs:** [parse.bot/marketplace/f6051032-48d9-4051-9bd6-9a9135b340e7/leroymerlin-pt-api](https://parse.bot/marketplace/f6051032-48d9-4051-9bd6-9a9135b340e7/leroymerlin-pt-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-leroymerlin-pt-api-f6051032/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_product_categories

Get product categories from the Leroy Merlin Portugal navigation menu. Returns top-level and featured subcategory names with their URLs. No input parameters required.

**Estimated cost:** Metered

_No parameters required._

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-leroymerlin-pt-api-f6051032/get_product_categories \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{}'
```

### get_product_details

Get full product details for a given product page URL, including name, price, description, reference/SKU, images, and technical specifications parsed from the product page's structured data (JSON-LD) and HTML.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `url` | string | Yes | Full product page URL from leroymerlin.pt (e.g. from search_products results) |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-leroymerlin-pt-api-f6051032/get_product_details \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"url":"<string>"}'
```

### get_workshop_details

Get full details for a specific workshop, including description of what participants will learn, and the store-by-store schedule (agenda) indicating which locations host each session with day and time.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `url` | string | Yes | Workshop detail page URL from leroymerlin.pt (e.g. from get_workshops results) |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-leroymerlin-pt-api-f6051032/get_workshop_details \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"url":"<string>"}'
```

### get_workshops

List upcoming workshops from the Leroy Merlin Portugal workshops section. Returns workshop titles, URLs, and next scheduled dates. No input parameters required.

**Estimated cost:** Metered

_No parameters required._

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-leroymerlin-pt-api-f6051032/get_workshops \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{}'
```

### search_products

Search for products by keyword on leroymerlin.pt. Returns the first page of product listings with name, price, rating, URL, image, and SKU. Pagination is not supported; results are limited to the first page (~18-30 items).

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `query` | string | Yes | Search keyword (e.g. 'martelo', 'tinta', 'pavimento') |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-leroymerlin-pt-api-f6051032/search_products \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"query":"<string>"}'
```
