# Sabon — 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 Sabon Hong Kong's Eau de Sabon perfume collection and view detailed information about fragrance notes and ingredients for each scent. Quickly find and compare perfumes to discover your ideal fragrance profile.

**Category:** E-commerce | **Website:** [www.sabon.com.hk/en/products](https://www.sabon.com.hk/en/products) | **Docs:** [parse.bot/marketplace/1f6e0551-d4dc-42e1-9735-7d1cfa5d675b/sabon-com-hk-api](https://parse.bot/marketplace/1f6e0551-d4dc-42e1-9735-7d1cfa5d675b/sabon-com-hk-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-sabon-com-hk-api-1f6e0551/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_perfume

Retrieves detailed information about a specific Sabon perfume by its URL slug, including fragrance notes (top, middle, base), pricing, and stock status.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `slug` | string | Yes | Product URL slug identifying the perfume (e.g. 'eau-de-sabon-green-rose-80ml'). Available from list_perfumes results. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-sabon-com-hk-api-1f6e0551/get_perfume \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"slug":"<string>"}'
```

### list_perfumes

Lists all Sabon perfumes (Eau de Sabon line) with their fragrance notes, pricing, and availability. Returns the complete catalog in a single response.

**Estimated cost:** Metered

_No parameters required._

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-sabon-com-hk-api-1f6e0551/list_perfumes \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{}'
```
