lashinbang.com APIlashinbang.com ↗
Search Lashinbang's used anime goods, games, and doujinshi inventory. Get product listings, buyback prices, and store locations via 3 structured endpoints.
curl -X GET 'https://api.parse.bot/scraper/39626d1e-3b49-4d7a-83c8-558ccc28cdb6/search_products' \ -H 'X-API-Key: $PARSE_API_KEY'
Search for products on Lashinbang Online shop. Returns paginated product listings with price, condition, category, maker, series, and store information. Uses the SNVA search engine powering the site. Categories use Japanese text names, not numeric IDs.
| Param | Type | Description |
|---|---|---|
| page | string | Page number (1-based). |
| sort | string | Sort order. Accepts exactly one of: relevance, arrival_desc, arrival_asc, update_desc, update_asc, price_desc, price_asc, release_desc, release_asc. |
| limit | string | Results per page. Accepts exactly one of: 20, 40, 60, 80, 100. |
| stock | string | Stock filter. Accepts exactly one of: in_stock, all. |
| keyword | string | Search keyword in Japanese (e.g. '初音ミク', 'ワンピース'). |
| category | string | Product category filter. Accepts exactly one of: グッズ, 映像・音楽, ゲーム, 男性向同人, 女性向同人, 書籍, 金券類, 衣装. Omit or empty for all categories. |
{
"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": {
"page": 1,
"limit": 20,
"total": 4716,
"products": [
{
"id": "151897",
"tag": "新入荷",
"url": "https://shop.lashinbang.com/products/detail/151897",
"image": "https://img.lashinbang.com/69/203000001969_L.jpg",
"maker": "セガ\tグッドスマイルカンパニー",
"price": 1491,
"store": "オンライン",
"title": "【未開封】ねんどろいどぷち 初音ミク -Project DIVA- VOCALOID 初音ミク Project DIVA特典ver.",
"series": "初音ミク -Project DIVA- シリーズ\tVOCALOID",
"category": "グッズ",
"condition": "未開封",
"subcategory": "フィギュア"
}
],
"last_page": 236
}
}About the lashinbang.com 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.
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.
- 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 | 250 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.