# Walmart (Mexico) — 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 Walmart Mexico's product catalog to access real-time pricing, availability, and detailed product information across all categories. Find similar items and compare options to make informed shopping decisions.

**Category:** E-commerce | **Website:** [walmart.com.mx/](https://walmart.com.mx/) | **Docs:** [parse.bot/marketplace/dc1a40dc-8df7-4880-a7bd-8b6a0c0caac3/walmart-com-mx-api](https://parse.bot/marketplace/dc1a40dc-8df7-4880-a7bd-8b6a0c0caac3/walmart-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-walmart-com-mx-api-dc1a40dc/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_product_details

Retrieve full product details for a given product ID including pricing, availability, images, descriptions, fulfillment options, brand, and category information.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `product_id` | string | Yes | Walmart Mexico product ID (e.g. 00750105590414) |

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

### get_similar_products

Retrieve similar and recommended products for a given item.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `product_id` | string | Yes | Walmart Mexico product ID |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-walmart-com-mx-api-dc1a40dc/get_similar_products \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"product_id":"<string>"}'
```

### list_categories

List all top-level departments and their subcategories from walmart.com.mx. Returns category names, images, and navigation links.

**Estimated cost:** Metered

_No parameters required._

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

### search_products

Search for products on walmart.com.mx. Returns paginated search results including product names, prices, images, ratings, and availability. Results are extracted from server-side rendered pages.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `cat_id` | string | No | Category ID filter to narrow search to a specific department |
| `facet` | string | No | Facet filter string for additional filtering |
| `max_price` | string | No | Maximum price filter value |
| `min_price` | string | No | Minimum price filter value |
| `page` | integer | No | Page number for pagination |
| `query` | string | Yes | Search keyword |
| `sort` | string | No | Sort order: best_match, price_low, price_high |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-walmart-com-mx-api-dc1a40dc/search_products \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"cat_id":"<string>","facet":"<string>","max_price":"<string>","min_price":"<string>","page":"<integer>","query":"<string>","sort":"<string>"}'
```
