# Life Interiors — 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 furniture products from Life Interiors' catalog to discover home decor items, view collection details, and access individual product information. Find the perfect pieces for your home by exploring their Australian furniture and interiors selection.

**Category:** E-commerce | **Website:** [lifeinteriors.com.au/](https://lifeinteriors.com.au/) | **Docs:** [parse.bot/marketplace/71ac7689-5d5a-4091-b6f6-5471b201838b/lifeinteriors-com-au-api](https://parse.bot/marketplace/71ac7689-5d5a-4091-b6f6-5471b201838b/lifeinteriors-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-lifeinteriors-com-au-api-71ac7689/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_product

Retrieve full details for a single product by its URL handle. Returns complete product information including HTML description, all variants with pricing and SKU, all images, and product options.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `handle` | string | Yes | Product URL handle (e.g. 'life-interiors-brooklyn-3-seater-sofa'). Obtainable from search_products or list_collection_products results. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-lifeinteriors-com-au-api-71ac7689/get_product \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"handle":"<string>"}'
```

### list_collection_products

List products in a specific collection by its URL handle. Supports pagination with up to 250 products per page. Collections include categories like 'sofas', 'chairs', 'tables', 'bedroom', 'outdoor', and brand/style collections.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `collection` | string | Yes | Collection URL handle (e.g. 'sofas', 'chairs', 'tables', 'bedroom', 'outdoor', 'coffee-tables'). |
| `limit` | integer | No | Number of products per page, between 1 and 250. |
| `page` | integer | No | Page number for pagination, starting at 1. |

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

### search_products

Full-text search for products by keyword. Returns up to 10 matching products with pricing, availability, and image data. Results are ordered by relevance.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `limit` | integer | No | Maximum number of products to return, between 1 and 10. |
| `query` | string | Yes | Search keyword or phrase to find products (e.g. 'sofa', 'dining table', 'oak bed'). |

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