# Kingsoopers — 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 King Soopers store locations and browse their product catalog to find items and availability. Note that product searches may have access restrictions that could require additional technical setup to work reliably.

**Category:** Food & Dining | **Website:** [kingsoopers.com/](https://kingsoopers.com/) | **Docs:** [parse.bot/marketplace/36a74208-fe86-4605-a973-aa6047deffaa/kingsoopers-com-api](https://parse.bot/marketplace/36a74208-fe86-4605-a973-aa6047deffaa/kingsoopers-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-kingsoopers-com-api-36a74208/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### search_products

Search for products at a specific King Soopers store location. Returns product name, price, size, brand, and UPC for each query term. Each query in the list is searched independently and all results are combined into one flat array. Requires a valid locationId from search_stores.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `limit` | integer | No | Maximum number of products to return per query term. |
| `location_id` | string | Yes | Store location ID obtained from search_stores endpoint (e.g. '62000115'). |
| `queries` | array | Yes | List of product search terms (e.g. ["milk", "bread"]). |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-kingsoopers-com-api-36a74208/search_products \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"limit":"<integer>","location_id":"<string>","queries":"<array>"}'
```

### search_stores

Search for King Soopers store locations near a ZIP code. Returns store details including locationId, address, phone number, hours, departments, and distance from the searched ZIP. Results are ordered by distance ascending. Useful for discovering locationId values needed by search_products.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `zip_code` | string | Yes | 5-digit US ZIP code to search for nearby stores (e.g. '80202'). |

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