# Ripley — 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 products across Ripley.cl's catalog and retrieve detailed information like prices, descriptions, and availability for any item. Perfect for comparing products, tracking pricing, or integrating Ripley's inventory into your own applications.

**Category:** E-commerce | **Website:** [ripley.com/](https://ripley.com/) | **Docs:** [parse.bot/marketplace/9b061128-6ca2-445c-9c06-ed8d37a58a23/ripley-com-api](https://parse.bot/marketplace/9b061128-6ca2-445c-9c06-ed8d37a58a23/ripley-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-ripley-com-api-9b061128/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_product_details

Get detailed information for a specific product by SKU. Returns full product data including prices, specifications, images, availability, categories, colors, and HTML description. The SKU can be obtained from search_products results.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `sku` | string | Yes | Product SKU identifier obtained from search_products results (e.g., '2000410378872') |

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

### search_products

Search for products on Ripley.cl by keyword. Returns up to 48 products per request sorted by relevance. Each product includes pricing, brand, availability, and a SKU that can be used with get_product_details for full specifications.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `query` | string | Yes | Search keyword (e.g., 'televisores', 'laptop', 'Samsung') |

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