# Lozo — 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 grocery coupons by brand, keyword, or category to find current deals with discount amounts, coupon details, and direct links to the offers. Save money on your shopping by quickly discovering available coupons from Lozo's database.

**Category:** Food & Dining | **Website:** [lozo.com/](https://lozo.com/) | **Docs:** [parse.bot/marketplace/0d2ca651-e448-4fcd-8254-760a5b0aac92/lozo-com-api](https://parse.bot/marketplace/0d2ca651-e448-4fcd-8254-760a5b0aac92/lozo-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-lozo-com-api-0d2ca651/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### search_coupons

Search grocery coupons by brand/keyword and/or category. Returns paginated coupon results with discount details, brand associations, categories, and source links. Results are auto-iterated across pages; each page contains up to ~22 coupons.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `category` | string | No | Filter by top-level coupon category. Omitting returns coupons from all categories. |
| `page` | integer | No | Page number for pagination. |
| `query` | string | No | Search term to filter coupons by brand or product name (e.g. 'Tide', 'Crest', 'cereal'). |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-lozo-com-api-0d2ca651/search_coupons \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"category":"<string>","page":"<integer>","query":"<string>"}'
```
