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

> Discover and browse METZ Tea's collection of premium teas, viewing product names, ingredients, and detailed specifications for each tea in their catalog. Find the perfect luxury tea by accessing comprehensive information about available options.

**Category:** E-commerce | **Website:** [www.metztea.hk/](https://www.metztea.hk/) | **Docs:** [parse.bot/marketplace/7b713485-5228-43f4-930d-ecccc61cf582/metztea-hk-api](https://parse.bot/marketplace/7b713485-5228-43f4-930d-ecccc61cf582/metztea-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-metztea-hk-api-7b713485/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_tea_details

Retrieve detailed information for a specific tea by its URL handle. Returns name, ingredients, origin, caffeine content, antioxidant level, weight, description, product type, vendor, and tags when available.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `handle` | string | Yes | URL slug/handle of the tea product (e.g. 'jasmine-dragon-tears'). Obtainable from list_teas results. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-metztea-hk-api-7b713485/get_tea_details \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"handle":"<string>"}'
```

### list_teas

Retrieve all teas in the METZ Tea catalog with their names and ingredients. Returns the complete collection in a single response. Some teas may have null ingredients when the product listing does not include that information.

**Estimated cost:** Metered

_No parameters required._

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-metztea-hk-api-7b713485/list_teas \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{}'
```
