# Suzuri — 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 for custom merchandise and apparel products on Suzuri.jp, view detailed product information, explore creator profiles and their collections, and discover items by category or keyword. Access user portfolios, browse complete product catalogs from individual creators, and find trending items across the marketplace.

**Category:** Marketplaces | **Website:** [suzuri.jp/](https://suzuri.jp/) | **Docs:** [parse.bot/marketplace/804d5810-a344-4699-b405-18a5e73ab56d/suzuri-jp-api](https://parse.bot/marketplace/804d5810-a344-4699-b405-18a5e73ab56d/suzuri-jp-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-suzuri-jp-api-804d5810/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_item_list

Get the list of available product types in the t-shirts category (e.g., Regular Fit T-Shirt, Hoodie, Sticker). Returns item details including IDs, names, and image URLs.

**Estimated cost:** Metered

_No parameters required._

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-suzuri-jp-api-804d5810/get_item_list \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{}'
```

### get_product

Retrieve full details of a specific product including title, price, description, brand, and availability. Uses the variant product ID (as returned by search_products or get_user_products). Returns stale_input with kind 'input_not_found' if the product does not exist.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `product_id` | string | Yes | The variant product ID (e.g., '82832311'). This is the 'id' field from search_products or get_user_products results. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-suzuri-jp-api-804d5810/get_product \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"product_id":"<string>"}'
```

### get_user

Retrieve a user's profile information including display name, avatar, and bio text.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `username` | string | Yes | The username of the creator or seller (e.g., 'beecat88'). |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-suzuri-jp-api-804d5810/get_user \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"username":"<string>"}'
```

### get_user_products

List products sold by a specific user with cursor-based pagination. Returns product details including title, image, price, and item type information.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `cursor` | string | No | Pagination cursor from a previous response's endCursor value. |
| `limit` | integer | No | Number of products per page. |
| `username` | string | Yes | The username of the creator or seller (e.g., 'beecat88'). |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-suzuri-jp-api-804d5810/get_user_products \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"cursor":"<string>","limit":"<integer>","username":"<string>"}'
```

### search_products

Search for products across the platform by keyword. Returns product IDs and URLs extracted from search results. Paginated by page number.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `limit` | integer | No | Maximum number of results to return per page. |
| `page` | integer | No | Page number for pagination (1-based). |
| `query` | string | Yes | Search keyword (e.g., 'cat', 'anime'). |

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