# OzBargain — 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 the latest deals and discover the most popular bargains trending on OzBargain.com.au. Access deals across all categories, sorted by recency or community upvotes.

**Category:** E-commerce | **Website:** [ozbargain.com.au/](https://ozbargain.com.au/) | **Docs:** [parse.bot/marketplace/697b37da-d08d-4298-ba14-420297dd2cd3/ozbargain-com-au-api](https://parse.bot/marketplace/697b37da-d08d-4298-ba14-420297dd2cd3/ozbargain-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-ozbargain-com-au-api-697b37da/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_computer_deals

Fetch current deals from the Computing category on OzBargain. Returns deals with title, price, store, votes, and other metadata. Paginates automatically across listing pages to fill the requested limit. Results are in listing order (newest first).

**Estimated cost:** Metered

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

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

### get_top_deals

Extract the most upvoted current deals across all categories on OzBargain. Scrapes the front page (multiple pages) and returns deals sorted by upvotes in descending order, deduplicated by URL.

**Estimated cost:** Metered

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

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