# 99 Bikes — 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 and browse 99 Bikes' complete product catalog, find nearby store locations, and discover workshop services all in one place. Get instant access to product collections, store details, and help centre information from Australia's leading bike retailer.

**Category:** E-commerce | **Website:** [99bikes.com.au/](https://99bikes.com.au/) | **Docs:** [parse.bot/marketplace/838e3d20-504b-4c9a-8f24-0ca0667f1d35/99bikes-com-au-api](https://parse.bot/marketplace/838e3d20-504b-4c9a-8f24-0ca0667f1d35/99bikes-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-99bikes-com-au-api-838e3d20/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_collection_products

Retrieve products from a named collection (category). Returns paginated product listings with available filter facets for categories, brands, and colours. Collections correspond to URL slugs on 99bikes.com.au/collections/<handle>.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `collection_handle` | string | Yes | The URL handle of the collection (e.g. 'helmets', 'mountain-bikes', 'electric-bikes', 'road-bike-helmets'). Found in collection URLs like 99bikes.com.au/collections/<handle>. |
| `page` | integer | No | Page number for pagination. |
| `page_size` | integer | No | Number of results per page. |
| `sort_by` | string | No | Sort order for results. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-99bikes-com-au-api-838e3d20/get_collection_products \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"collection_handle":"<string>","page":"<integer>","page_size":"<integer>","sort_by":"<string>"}'
```

### get_help_centre

Retrieve help centre content including article categories with their article links, and frequently asked questions with answers. Categories include Recalls, Terms & Policies, Info & Updates, My Account, Services, Gift Cards, Payments, Product Information, Orders, Returns/Refunds/Warranties, and Delivery & Collection.

**Estimated cost:** Metered

_No parameters required._

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-99bikes-com-au-api-838e3d20/get_help_centre \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{}'
```

### get_stores

Retrieve all 99 Bikes retail store locations across Australia. Returns every store with full address, geographic coordinates, contact details, and a link to the store's page. No pagination — all stores returned in a single response.

**Estimated cost:** Metered

_No parameters required._

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-99bikes-com-au-api-838e3d20/get_stores \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{}'
```

### get_workshop_services

Retrieve workshop service information including service package tiers (Tune-Up, Standard, Standard+, Ultimate) with their included services, and individual repair services with full and club pricing.

**Estimated cost:** Metered

_No parameters required._

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-99bikes-com-au-api-838e3d20/get_workshop_services \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{}'
```

### search_products

Full-text search across the 99 Bikes product catalog. Matches product titles and attributes against the query. Returns paginated results sorted by relevance, price, or popularity. Each product includes pricing variants with availability status.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `page` | integer | No | Page number for pagination. |
| `page_size` | integer | No | Number of results per page. |
| `query` | string | Yes | Search query term (e.g. 'helmet', 'mountain bike', 'lights'). |
| `sort_by` | string | No | Sort order for results. |

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