# Picknpayzambia — 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 the latest Pick n Pay Zambia promotional offers and locate nearby store branches to plan your shopping trips. Access current catalog information and store locations to discover deals and convenient shopping destinations near you.

**Category:** Food & Dining | **Website:** [www.picknpayzambia.com/specials/](https://www.picknpayzambia.com/specials/) | **Docs:** [parse.bot/marketplace/16f3fbdb-0a11-4d62-bcd7-cd45c3e4b91c/picknpayzambia-com-api](https://parse.bot/marketplace/16f3fbdb-0a11-4d62-bcd7-cd45c3e4b91c/picknpayzambia-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-picknpayzambia-com-api-16f3fbdb/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_specials

Retrieve current promotional catalogs (specials) from Pick n Pay Zambia. Returns catalog metadata including title, validity dates, applicable stores, PDF catalog URL, and thumbnail image URL. The site publishes periodic promotional flyers; this endpoint surfaces whatever is currently active.

**Estimated cost:** Metered

_No parameters required._

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-picknpayzambia-com-api-16f3fbdb/get_specials \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{}'
```

### search_stores

Search for Pick n Pay Zambia store locations by geographic coordinates. Returns stores within the specified radius, including name, address, city, phone, email, and weekly opening hours. Default coordinates center on Lusaka.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `lat` | string | No | Latitude coordinate for store search center point. |
| `lng` | string | No | Longitude coordinate for store search center point. |
| `max_results` | string | No | Maximum number of stores to return. |
| `radius` | string | No | Search radius in kilometers. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-picknpayzambia-com-api-16f3fbdb/search_stores \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"lat":"<string>","lng":"<string>","max_results":"<string>","radius":"<string>"}'
```
