# 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 for used anime merchandise, games, and doujinshi across Lashinbang Online's inventory, check buyback prices for your items, and find store locations. Get instant access to product availability and pricing information to buy or sell your collection.

**Category:** Marketplaces | **Website:** [lashinbang.com/](https://lashinbang.com/) | **Docs:** [parse.bot/marketplace/bae10780-4609-4802-a449-5dad87db2818/lashinbang-com-api](https://parse.bot/marketplace/bae10780-4609-4802-a449-5dad87db2818/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-lashinbang-com-api-bae10780/`
**Auth:** `Authorization: Bearer <LOCUS_API_KEY>`

## Endpoints

### get_stores

Returns all Lashinbang physical stores with address, phone, opening hours, nearest station, and GPS coordinates. Single-page response with no pagination or filtering.

**Estimated cost:** Metered

_No parameters required._

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

### search_buyback

Search buyback (kaitori) prices showing how much Lashinbang pays to purchase items from sellers. Filterable by category; sortable by price or release date. Paginates via integer page number.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `category` | string | No | Product category filter. |
| `keyword` | string | No | Search keyword in Japanese. |
| `limit` | string | No | Results per page, integer between 1 and 100. |
| `page` | integer | No | Page number (1-based). |
| `sort` | string | No | Sort order. |

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

### search_products

Full-text search over Lashinbang Online used-goods inventory. Matches title and metadata against the keyword. Filterable by category and stock status; sortable by arrival, price, release date, or relevance. Paginates via integer page number. Each product exposes condition grade, store location, maker, and series.

**Estimated cost:** Metered

| Field | Type | Required | Description |
|-------|------|----------|-------------|
| `category` | string | No | Product category filter. |
| `keyword` | string | No | Search keyword in Japanese. |
| `limit` | string | No | Results per page. |
| `page` | integer | No | Page number (1-based). |
| `sort` | string | No | Sort order. |
| `stock` | string | No | Stock filter. |

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