Lashinbang APIlashinbang.com ↗
Search Lashinbang's used anime goods, games, and doujinshi inventory. Get product listings, buyback prices, and store locations via 3 structured endpoints.
What is the Lashinbang API?
The Lashinbang API provides 3 endpoints covering product search, buyback price lookup, and physical store data from Lashinbang Online, Japan's used anime merchandise and doujinshi retailer. The search_products endpoint returns paginated listings with price, condition, category, series, and store fields. The search_buyback endpoint exposes what Lashinbang will pay sellers per item. All category filters use Japanese text names matching the site's own taxonomy.
curl -X GET 'https://api.parse.bot/scraper/39626d1e-3b49-4d7a-83c8-558ccc28cdb6/search_products?page=1&sort=relevance&limit=20&stock=in_stock&keyword=%E5%88%9D%E9%9F%B3%E3%83%9F%E3%82%AF&category=%E3%82%B0%E3%83%83%E3%82%BA' \ -H 'X-API-Key: $PARSE_API_KEY'
Typed, relational, agent-ready
A generated client with real types, enums, and the links between objects — the structure a flat JSON response can't carry. Autocompletes in your editor and reads cleanly to coding agents.
- Fully typed · autocompletes
- Objects link to objects
- Typed errors & pagination
Typed Python client. Set up the SDK in your uv project, then pull this API’s typed client:
uv add parse-sdk uv run parse init uv run parse add --marketplace lashinbang-com-api
uv run parse add --marketplace pulls a pinned snapshot of this canonical API — it won’t change underneath you. To customize it, subscribe and swap to your own copy.
from parse_apis.lashinbang_online_api import Lashinbang, ProductCategory, ProductSort, BuybackSort, StockFilter
client = Lashinbang()
# Search for Miku goods sorted by price
for product in client.products.search(keyword="初音ミク", category=ProductCategory.GOODS, sort=ProductSort.PRICE_ASC, stock=StockFilter.IN_STOCK, limit=5):
print(product.title, product.price, product.condition, product.store)
# Search buyback prices for One Piece items
for item in client.buybackitems.search(keyword="ワンピース", category=ProductCategory.GOODS, sort=BuybackSort.PRICE_DESC, limit=3):
print(item.title, item.buyback_price, item.maker)
# List all physical stores
for store in client.stores.list(limit=5):
print(store.name, store.address, store.tel)
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.
| Param | Type | Description |
|---|---|---|
| page | integer | Page number (1-based). |
| sort | string | Sort order. |
| limit | string | Results per page. |
| stock | string | Stock filter. |
| keyword | string | Search keyword in Japanese. |
| category | string | Product category filter. |
{
"type": "object",
"fields": {
"page": "integer current page number",
"limit": "integer results per page",
"total": "integer total number of matching products",
"products": "array of product objects with id, title, url, image, price, category, subcategory, maker, series, condition, store, tag",
"last_page": "integer total number of pages"
},
"sample": {
"data": {
"page": 1,
"limit": 20,
"total": 4905,
"products": [
{
"id": "8167030",
"tag": "新入荷",
"url": "https://shop.lashinbang.com/products/detail/8167030",
"image": "https://img.lashinbang.com/284/203010184284_L.jpg",
"maker": "セガ",
"price": 1690,
"store": "新潟店",
"title": "【未開封】初音ミク Project DIVA MEGA39's スーパープレミアムフィギュア",
"series": "VOCALOID",
"category": "グッズ",
"condition": "未開封",
"subcategory": "フィギュア"
}
],
"last_page": 246
},
"status": "success"
}
}About the Lashinbang API
Product Search
The search_products endpoint queries Lashinbang's inventory and returns paginated results including id, title, url, image, price, condition, category, subcategory, maker, series, store, and tag for each product. You can filter by keyword (in Japanese, e.g. 初音ミク), category (one of eight Japanese-text values: グッズ, 映像・音楽, ゲーム, 男性向同人, 女性向同人, 書籍, 金券類, 衣装), stock (in_stock or all), and sort (options include arrival_desc, price_desc, and relevance). Page size is controlled with limit, accepting 20, 40, 60, 80, or 100 results per page. The response includes a total count and last_page for full pagination traversal.
Buyback Prices
The search_buyback endpoint returns kaitori (buy-back) offers — what Lashinbang will pay to purchase items from sellers. Each item in the items array carries id, title, url, image, buyback_price, category, subcategory, maker, and series. The same category and keyword filters from product search apply here. Sort options include price_desc, price_asc, release_desc, and release_asc. This endpoint is useful for price arbitrage research or building tools that help collectors decide whether to sell items to Lashinbang.
Store Locations
The get_stores endpoint returns the full list of Lashinbang physical stores in a single unpaginated response. Each store object includes name, type, area, address, postal_code, tel, opening_hour, regular_holiday, latitude, and longitude. The latitude and longitude fields make it straightforward to plot stores on a map or calculate proximity to a given location.
The Lashinbang API is a managed, monitored endpoint for lashinbang.com — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when lashinbang.com changes and a check fails, the API is automatically queued for repair and re-verified. It is built to keep working as the site underneath it changes.
This isn't an official lashinbang.com API — it's an independent, maintained REST wrapper over public data. Where the source has no official API (or only a limited one), Parse gives you a stable contract over a source that never promised one, and keeps it current. Need a new endpoint or field? You can revise it yourself in plain English and the agent rebuilds it against the live site in minutes — contributing the change back to the shared API is free.
Will this API break when the source site changes?+
Is this an official API from the source site?+
Can I fix or extend this API myself if I need a new endpoint or field?+
What happens if I call an endpoint that has an issue?+
- Track used anime goods prices on Lashinbang to monitor market value for specific series or characters.
- Build a buyback calculator that fetches
buyback_pricefromsearch_buybackto help collectors value their inventory before visiting a store. - Aggregate in-stock product listings by
conditionandpriceto surface underpriced items across categories likeゲームorグッズ. - Create a store-finder app using
latitudeandlongitudefromget_storesto locate the nearest Lashinbang branch. - Monitor new arrivals for a specific doujinshi series using
arrival_descsort and a Japanesekeywordinsearch_products. - Cross-reference
buyback_priceagainstpricefromsearch_productsto identify items with high resale margins on Lashinbang. - Build a catalog of used anime merchandise filtered by
makerorseriesfields for a collection management tool.
| Tier | Price | Credits/month | Rate limit |
|---|---|---|---|
| Free | $0/mo | 100 | 5 req/min |
| Hobby | $30/mo | 1,000 | 20 req/min |
| Developer | $100/mo | 5,000 | 100 req/min |
One credit = one API call regardless of which marketplace API you call. Exceeding the rate limit returns a 429 response. Authenticate with the X-API-Key header.
Does Lashinbang have an official developer API?+
What does the `search_buyback` endpoint return, and how does it differ from `search_products`?+
search_buyback returns the kaitori (buy-back) prices Lashinbang offers sellers, including fields like buyback_price, series, maker, and subcategory per item. It does not include condition, store, or tag fields, which are specific to the search_products endpoint. The two endpoints serve distinct use cases: one for buyers browsing inventory, the other for sellers researching what they'd receive for their items.How do category filters work across endpoints?+
search_products and search_buyback accept a category parameter that must be one of eight Japanese-text values: グッズ, 映像・音楽, ゲーム, 男性向同人, 女性向同人, 書籍, 金券類, or 衣装. Numeric IDs are not accepted. Omitting the parameter returns results across all categories.Does the API return individual product detail pages or seller reviews?+
search_products, buyback price lists via search_buyback, and store metadata via get_stores. Per-product detail pages and any user review or rating data are not exposed. You can fork this API on Parse and revise it to add an endpoint targeting individual product URLs.