# Danmurphys — 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.

> Browse Dan Murphy's beer listings and retrieve product names, prices, package sizes, and alcohol percentages.

**Category:** E-commerce | **Website:** [danmurphys.com.au/](https://danmurphys.com.au/) | **Docs:** [parse.bot/marketplace/fe7e966a-f748-45c4-ad10-db765e70126b/danmurphys-com-au-api](https://parse.bot/marketplace/fe7e966a-f748-45c4-ad10-db765e70126b/danmurphys-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-danmurphys-com-au-api-fe7e966a/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_beer_products

Retrieves beer products from Dan Murphy's beer category. Returns a paginated list of products with name, price, volume, and alcohol percentage. The upstream API is fetched in pages of 24; results are accumulated until the requested limit is reached. Products are sorted by relevance.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `limit` | integer | No | Maximum number of products to return. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-danmurphys-com-au-api-fe7e966a/get_beer_products \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"limit":"<integer>"}'
```
