# Thekrazycouponlady — 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.

> Find and browse current grocery and drugstore manufacturer coupons with details like brand, discount value, expiration dates, and direct offer links to help you save on your shopping. Quickly search through organized coupon listings by category to discover the best deals available at your favorite stores.

**Category:** E-commerce | **Website:** [thekrazycouponlady.com/coupons](https://thekrazycouponlady.com/coupons) | **Docs:** [parse.bot/marketplace/98d18cad-58db-4348-a915-8f80be2f8e47/thekrazycouponlady-com-api](https://parse.bot/marketplace/98d18cad-58db-4348-a915-8f80be2f8e47/thekrazycouponlady-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-thekrazycouponlady-com-api-98d18cad/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_coupon

Get full details for a single coupon by its ID, including legal copy/redemption terms when available. The coupon_id is obtained from list_coupons results.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `coupon_id` | string | Yes | Coupon identifier (e.g. 'TCB_8112010011111149067') from list_coupons results. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-thekrazycouponlady-com-api-98d18cad/get_coupon \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"coupon_id":"<string>"}'
```

### list_coupons

List current unexpired manufacturer coupons for grocery and drugstore products. Results are sorted by most recently updated. Each coupon includes discount value, product description, redeemable store, brand, categories, expiration date, and a direct offer link. Results are auto-iterated across pages.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `brand` | string | No | Filter by brand slug (e.g. 'dove', 'fleet', 'crest'). Omit to include all brands. |
| `category` | string | No | Filter by category slug (e.g. 'body-wash', 'medicine', 'personal-care', 'beauty'). Omit to include all categories. |
| `limit` | integer | No | Number of coupons per page (1-100). |
| `page` | integer | No | Page number for pagination. |
| `store` | string | No | Filter by store slug (e.g. 'cvs', 'walgreens', 'kroger'). Omit to include all stores. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-thekrazycouponlady-com-api-98d18cad/list_coupons \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"brand":"<string>","category":"<string>","limit":"<integer>","page":"<integer>","store":"<string>"}'
```
