# Aldi (Australia) — 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 Aldi Australia's product catalogue to find items by keyword and instantly access details like pricing, brand information, product size, images, and real-time availability. Quickly compare products and check stock status to find exactly what you're looking for at Aldi.

**Category:** Food & Dining | **Website:** [www.aldi.com.au/en/groceries/](https://www.aldi.com.au/en/groceries/) | **Docs:** [parse.bot/marketplace/0770075d-b983-457a-8df5-0db90508a0ba/aldi-com-au-api](https://parse.bot/marketplace/0770075d-b983-457a-8df5-0db90508a0ba/aldi-com-au-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-aldi-com-au-api-0770075d/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### search_products

Search Aldi Australia products by keyword. Returns paginated results sorted by relevance. Each result includes product name, brand, current price, was price (if discounted), package size, image URL, and in-store availability. The upstream API accepts page sizes of 12, 16, 24, 30, 32, 48, or 60; the requested limit is rounded up to the nearest valid value.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `limit` | integer | No | Maximum number of products per page. Rounded up to the nearest accepted value from: 12, 16, 24, 30, 32, 48, 60. |
| `page` | integer | No | Page number for pagination (1-based). Omitting returns the first page. |
| `query` | string | Yes | Search keyword (e.g. 'milk', 'chocolate', 'bread'). |

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