# Pichau — 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 electronics products on Pichau.com.br by keyword and browse paginated results to find exactly what you're looking for. Get detailed product information including specifications, pricing, and availability for any item in their Brazilian electronics catalog.

**Category:** E-commerce | **Website:** [www.pichau.com.br/](https://www.pichau.com.br/) | **Docs:** [parse.bot/marketplace/934fa853-614f-482e-845d-b7902f8554d4/pichau-com-br-api](https://parse.bot/marketplace/934fa853-614f-482e-845d-b7902f8554d4/pichau-com-br-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-pichau-com-br-api-934fa853/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_product_details

Retrieve full details for a single product by its URL key (slug). The url_key is available in search_products results at products[*].url_key. Returns pricing breakdown (PIX, installments, original/current/special), brand, categories, stock status, and open-box flag. A non-existent url_key returns input_not_found.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `url_key` | string | Yes | Product URL key/slug obtained from search_products results (e.g. 'monitor-lg-home-office-22-pol-va-fhd-5ms-120hz-hdmi-22u403a-b') |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-pichau-com-br-api-934fa853/get_product_details \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"url_key":"<string>"}'
```

### search_products

Full-text search over Pichau product catalog by keyword. Returns up to 36 products per page with pricing (PIX discount, installments), availability, brand, categories, and product URL keys for drill-down. Paginates via integer page counter. An unmatched query returns zero results (not an error).

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `page` | integer | No | Page number (1-based) |
| `query` | string | No | Search query keyword |

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