# Shop Lashinbang — 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 discover secondhand anime merchandise like figures, games, and doujinshi from Lashinbang's online catalog, then retrieve detailed product information and browse available categories. Build shopping tools or collectors' apps that help users find rare anime goods across this Japanese secondhand marketplace.

**Category:** Marketplaces | **Website:** [shop.lashinbang.com/](https://shop.lashinbang.com/) | **Docs:** [parse.bot/marketplace/0292997c-38d4-47c0-8d62-f7bad7237c97/shop-lashinbang-com-api](https://parse.bot/marketplace/0292997c-38d4-47c0-8d62-f7bad7237c97/shop-lashinbang-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-shop-lashinbang-com-api-0292997c/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_categories

Get available search categories and condition filter options. Categories use Japanese text strings as identifiers (not numeric IDs). Only the state/condition filter uses numeric values. Useful for discovering valid filter values before calling search_products.

**Estimated cost:** Metered

_No parameters required._

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-shop-lashinbang-com-api-0292997c/get_categories \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{}'
```

### get_product_detail

Get detailed product information from a Lashinbang product page by numeric product ID. Returns title, current price, condition, description notes, store, category, JAN code and image URL. The description field contains raw store notes about item condition and defects.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `product_id` | string | Yes | Numeric product ID (e.g. 6059086). Available from search_products results as items[*].id. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-shop-lashinbang-com-api-0292997c/get_product_detail \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"product_id":"<string>"}'
```

### search_products

Search products on Lashinbang online shop by keyword, category, condition state, and sorting. Returns paginated results with product details including price, condition, maker, series, and store information. Paginates via integer page number. Each item carries enough metadata to filter client-side by series, maker, or store.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `category` | string | No | Main category filter. |
| `keyword` | string | No | Search keyword (Japanese text). E.g. フィギュア, 鬼滅の刃, ツイステ. |
| `limit` | integer | No | Number of results per page, between 1 and 100. |
| `page` | integer | No | Page number (1-based). |
| `sort` | string | No | Sort order for results. |
| `state` | string | No | Product condition filter. |

```bash
curl -X POST https://api.paywithlocus.com/api/wrapped/parse-shop-lashinbang-com-api-0292997c/search_products \
  -H "Authorization: Bearer YOUR_LOCUS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"category":"<string>","keyword":"<string>","limit":"<integer>","page":"<integer>","sort":"<string>","state":"<string>"}'
```
