# P Bandai (Japan) — 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 Premium Bandai's exclusive product catalog by character, genre, and availability status to find the latest collectibles and merchandise. Get detailed product information and discover new or upcoming releases to stay updated on the newest Bandai items.

**Category:** E-commerce | **Website:** [p-bandai.jp/](https://p-bandai.jp/) | **Docs:** [parse.bot/marketplace/74995e53-2f19-48ce-869d-d7cbfcc14a02/p-bandai-jp-api](https://parse.bot/marketplace/74995e53-2f19-48ce-869d-d7cbfcc14a02/p-bandai-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-p-bandai-jp-api-74995e53/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### filter_by_character

Filter products by character series ID. Character IDs can be obtained from the get_search_filters endpoint. Returns paginated product listings.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `char_id` | string | Yes | Character series ID from get_search_filters (e.g. 'c2933' for アークナイツ, 'c2906' for RRR). |
| `page` | integer | No | Page number for pagination. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-p-bandai-jp-api-74995e53/filter_by_character \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"char_id":"<string>","page":"<integer>"}'
```

### filter_by_genre

Filter products by merchandise genre ID. Genre IDs can be obtained from the get_search_filters endpoint. Returns paginated product listings.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `genre_id` | string | Yes | Genre ID from get_search_filters (e.g. '0013' for おもちゃ・キャラクター玩具). |
| `page` | integer | No | Page number for pagination. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-p-bandai-jp-api-74995e53/filter_by_genre \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"genre_id":"<string>","page":"<integer>"}'
```

### get_product_details

Retrieve product details for a specific item by searching for its product ID. Returns name, price, images, labels, and product URL.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `product_id` | string | Yes | Numeric product ID (e.g. '1000242716'). Obtainable from search_products results. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-p-bandai-jp-api-74995e53/get_product_details \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"product_id":"<string>"}'
```

### get_search_filters

Retrieve available filter facets for characters and genres. Returns lists of character series and genre categories with their IDs, which can be used with filter_by_character and filter_by_genre endpoints.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `query` | string | No | Optional search query to scope the available filters. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-p-bandai-jp-api-74995e53/get_search_filters \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"query":"<string>"}'
```

### search_new_products

Fetch newly listed products sorted by newest first. Returns paginated product listings.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `page` | integer | No | Page number for pagination. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-p-bandai-jp-api-74995e53/search_new_products \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"page":"<integer>"}'
```

### search_products

Search for products on p-bandai.jp using keyword queries. Returns paginated product listings with name, price, image, and labels.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `page` | integer | No | Page number for pagination. |
| `query` | string | Yes | Search keyword (e.g. 'Gundam', 'ガンダム') |

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

### search_upcoming_products

Fetch products that are not yet available for sale (upcoming/pre-order items). Returns paginated product listings.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `page` | integer | No | Page number for pagination. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-p-bandai-jp-api-74995e53/search_upcoming_products \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"page":"<integer>"}'
```
