# P Bandai — 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.

> Access data from p-bandai.com.

**Category:** E-commerce | **Website:** [p-bandai.com/hk](https://p-bandai.com/hk) | **Docs:** [parse.bot/marketplace/56875a5a-51d9-4ae7-9bca-d060b75b298f/p-bandai-com-api](https://parse.bot/marketplace/56875a5a-51d9-4ae7-9bca-d060b75b298f/p-bandai-com-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-p-bandai-com-api-56875a5a/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### list_preorder_items

Lists currently available pre-order items on Premium Bandai Hong Kong. Returns newly opened pre-orders that are still accepting orders, ordered by most recently opened. Each item includes pricing in HKD, sale period dates, product images, and pre-order flags.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `limit` | integer | No | Maximum number of pre-order items to return (1-200). |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-p-bandai-com-api-56875a5a/list_preorder_items \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"limit":"<integer>"}'
```

### search_products

Searches for products on Premium Bandai Hong Kong by keyword. Returns available and upcoming pre-order items matching the query. Results include product details, pricing, sale periods, and images. Supports manual pagination via offset and limit parameters, and sorting.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `keyword` | string | Yes | Search keyword to find products. |
| `limit` | integer | No | Maximum number of results to return per page (1-40). |
| `offset` | integer | No | Number of results to skip for pagination. |
| `sort_type` | string | No | Sort order for results. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-p-bandai-com-api-56875a5a/search_products \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"keyword":"<string>","limit":"<integer>","offset":"<integer>","sort_type":"<string>"}'
```
