# Food Lion — 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 digital coupons available at Food Lion stores, with options to filter by category and navigate through paginated results. Find discounts on groceries and household items to use on your next shopping trip.

**Category:** Food & Dining | **Website:** [foodlion.com/](https://foodlion.com/) | **Docs:** [parse.bot/marketplace/5f19c7da-9caa-4e4e-b7b1-0dbad865d4cb/foodlion-com-api](https://parse.bot/marketplace/5f19c7da-9caa-4e4e-b7b1-0dbad865d4cb/foodlion-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-foodlion-com-api-5f19c7da/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### find_nearest_store

Find the nearest Food Lion store to a given ZIP code. Returns the store's service location ID (compatible with the search_coupons endpoint), physical address, city, and state.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `zip_code` | string | Yes | 5-digit US ZIP code, leading zeros preserved (e.g. 23518). |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-foodlion-com-api-5f19c7da/find_nearest_store \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"zip_code":"<string>"}'
```

### search_coupons

Search digital coupons available at a Food Lion store location. Returns coupons with discount details, brand names, validity dates, and category information. Results include facets showing available categories with counts. Coupons are sorted by recommendation score. Results are auto-iterated across pages.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `category_id` | string | No | Category tree ID to filter coupons (e.g. '805' for Dairy & Eggs, '1448' for Laundry/Paper/Cleaning). Available IDs are returned in the facets array of the response. |
| `search_text` | string | No | Free-text search term to filter coupons by product name or description. |
| `size` | integer | No | Number of coupons to return per page (1-100). |
| `start` | integer | No | Zero-based offset for pagination. |
| `store_id` | string | No | Food Lion service location ID (numeric string). Determines which store's coupon availability is queried. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-foodlion-com-api-5f19c7da/search_coupons \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"category_id":"<string>","search_text":"<string>","size":"<integer>","start":"<integer>","store_id":"<string>"}'
```
