# Chedraui — 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 products from Chedraui Mexico's online store, view detailed product information and categories, and discover trending searches to find exactly what you're looking for. Access comprehensive product catalogs organized by category and see what other shoppers are searching for most.

**Category:** E-commerce | **Website:** [chedraui.com.mx/](https://chedraui.com.mx/) | **Docs:** [parse.bot/marketplace/81674ee3-b988-4680-b589-ef96c8e45220/chedraui-com-mx-api](https://parse.bot/marketplace/81674ee3-b988-4680-b589-ef96c8e45220/chedraui-com-mx-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-chedraui-com-mx-api-81674ee3/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_category_products

List products within a specific category path with pagination. Category paths can be obtained from the list_categories endpoint (strip the leading slash). Returns the same product shape as search_products.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `category_path` | string | Yes | The category path without leading slash (e.g. 'supermercado/frutas-y-verduras', 'supermercado/despensa'). |
| `limit` | integer | No | Number of products per page. |
| `page` | integer | No | Page number for pagination. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-chedraui-com-mx-api-81674ee3/get_category_products \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"category_path":"<string>","limit":"<integer>","page":"<integer>"}'
```

### get_product_details

Retrieve full details for a specific product using its slug. The slug is the linkText value from search results (e.g. 'leche-condensada-nestle-la-lechera-original-375g-3388156'). Returns a single product object with full specifications, images, seller pricing, and category path.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `product_slug` | string | Yes | The product slug from URL or linkText field in search results (e.g. 'leche-condensada-nestle-la-lechera-original-375g-3388156'). Must end with the numeric product ID. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-chedraui-com-mx-api-81674ee3/get_product_details \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"product_slug":"<string>"}'
```

### get_top_searches

Retrieve the most popular search terms on the site. Returns trending search suggestions that can be used as input for search_products.

**Estimated cost:** Metered

_No parameters required._

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-chedraui-com-mx-api-81674ee3/get_top_searches \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{}'
```

### list_categories

Retrieve the full nested category tree (MEGAMENU). Returns all top-level categories with their subcategories including slugs, display flags, and ordering. Use the slug values (stripping the leading slash) as input to get_category_products.

**Estimated cost:** Metered

_No parameters required._

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-chedraui-com-mx-api-81674ee3/list_categories \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{}'
```

### search_products

Full-text search over Chedraui's product catalog. Returns paginated products sorted by relevance score. Each product includes pricing, brand, category path, images, and SKU-level seller offers. Pagination is offset-based (page × limit). The total matching count is in recordsFiltered.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `limit` | integer | No | Number of products per page. |
| `page` | integer | No | Page number for pagination. |
| `query` | string | Yes | Search keyword (e.g. 'leche', 'shampoo', 'cerveza'). |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-chedraui-com-mx-api-81674ee3/search_products \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"limit":"<integer>","page":"<integer>","query":"<string>"}'
```
