# H-E-B — 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 H-E-B grocery products to instantly find current pricing, availability, and product details across their inventory. Use this to compare prices, check stock levels, and discover items available at your local H-E-B store.

**Category:** Food & Dining | **Website:** [heb.com/](https://heb.com/) | **Docs:** [parse.bot/marketplace/782f2158-73c8-43d8-b61e-7ae09aabd027/heb-com-api](https://parse.bot/marketplace/782f2158-73c8-43d8-b61e-7ae09aabd027/heb-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-heb-com-api-782f2158/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### search_products

Full-text product search across the H-E-B grocery catalog. Returns paginated results with pricing, availability, brand, and product details for a given store. Each page returns up to ~60 products. Results are auto-iterated by the SDK.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `page` | integer | No | Page number for paginated results (1-based). |
| `query` | string | Yes | Search term for products (e.g. 'coffee', 'milk', 'organic eggs'). |
| `sort` | string | No | Sort order for search results. |
| `store_id` | string | No | H-E-B store ID to scope pricing and availability to a specific store (e.g. '92', '109'). When omitted, the server assigns a default store. |

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