# Coppel — 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 Coppel's product catalog by keyword to find items with prices, images, and detailed product information, with flexible sorting and pagination options. Get real-time access to Mexico's largest department store inventory to compare products and prices effortlessly.

**Category:** E-commerce | **Website:** [www.coppel.com/](https://www.coppel.com/) | **Docs:** [parse.bot/marketplace/7d995331-b922-4988-ab03-a02f5176cecf/coppel-com-api](https://parse.bot/marketplace/7d995331-b922-4988-ab03-a02f5176cecf/coppel-com-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-coppel-com-api-7d995331/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_product_listings

Browse Coppel.com products by category or department keyword. Returns paginated product listings plus available filter facets (brands, colors, sizes, discounts, sellers, specs). Useful for department-level exploration where you want to see what filters are available before drilling down. Same product shape as search_products but includes structured filter metadata instead of category breakdowns.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `order_by` | string | No | Sort order for results |
| `page` | integer | No | Page number (1-based) |
| `page_size` | integer | No | Number of products per page (max ~48) |
| `search_term` | string | No | Category or department name (e.g., 'Celulares', 'Laptops', 'Muebles', 'Televisores') |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-coppel-com-api-7d995331/get_product_listings \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"order_by":"<string>","page":"<integer>","page_size":"<integer>","search_term":"<string>"}'
```

### search_products

Full-text search over Coppel.com product catalog by keyword. Returns paginated product listings with pricing, brand, badges, seller info, delivery options, and a category breakdown showing how results distribute across departments. Paginates via page number; each product exposes installment financing terms. Sorting controls relevance, price, or recency ordering.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `order_by` | string | No | Sort order for results |
| `page` | integer | No | Page number (1-based) |
| `page_size` | integer | No | Number of products per page (max ~48) |
| `query` | string | No | Search keyword (e.g., 'zapatos', 'laptops', 'iPhone') |

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