Discover/shop.lashinbang.com API
live

shop.lashinbang.com APIshop.lashinbang.com

Search and retrieve secondhand anime figures, games, doujinshi, and goods from Lashinbang's online shop via 3 structured JSON endpoints.

Endpoints
3
Updated
2h ago
Try it
Page number (1-based).
Sort order. Accepts exactly one of: arrival (newest arrivals first), price_asc (price low to high), price_desc (price high to low).
Number of results per page, between 1 and 100.
Product condition filter. Accepts exactly one of: 1 (未開封/Unopened), 2 (状態A/Condition A), 3 (状態B/Condition B). Omitted = all conditions.
Search keyword (Japanese text). E.g. フィギュア, 鬼滅の刃, ツイステ.
Main category filter. Accepts exactly one of: グッズ, 映像・音楽, ゲーム, 男性向同人, 女性向同人, 書籍, 金券類, 衣装. Omitted = all categories.
api.parse.bot/scraper/9c789f40-84ff-4824-bd15-c6b3e6aa4f68/<endpoint>
Ready to send
Fill in the parameters and hit sign in to send to see live response data here.
Use it in your codegrab a free API key at signup
curl -X GET 'https://api.parse.bot/scraper/9c789f40-84ff-4824-bd15-c6b3e6aa4f68/search_products' \
  -H 'X-API-Key: $PARSE_API_KEY'
All endpoints · 3 totalclick to expand

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.

Input
ParamTypeDescription
pageintegerPage number (1-based).
sortstringSort order. Accepts exactly one of: arrival (newest arrivals first), price_asc (price low to high), price_desc (price high to low).
limitintegerNumber of results per page, between 1 and 100.
statestringProduct condition filter. Accepts exactly one of: 1 (未開封/Unopened), 2 (状態A/Condition A), 3 (状態B/Condition B). Omitted = all conditions.
keywordstringSearch keyword (Japanese text). E.g. フィギュア, 鬼滅の刃, ツイステ.
categorystringMain category filter. Accepts exactly one of: グッズ, 映像・音楽, ゲーム, 男性向同人, 女性向同人, 書籍, 金券類, 衣装. Omitted = all categories.
Response
{
  "type": "object",
  "fields": {
    "items": "array of product objects with id, title, url, image, price, condition, category, subcategory, series, maker, store, jan_code",
    "last_page": "integer",
    "total_hits": "integer",
    "current_page": "integer"
  },
  "sample": {
    "items": [
      {
        "id": "6059086",
        "url": "https://shop.lashinbang.com/products/detail/6059086",
        "image": "https://img.lashinbang.com/product_669100c2abb02.JPG",
        "maker": "バンダイ",
        "price": 13376,
        "store": "熊本店",
        "title": "フィギュアーツZERO 範馬刃牙 ビスケット・オリバ 【フィギュア】[バンダイ]",
        "series": "グラップラー刃牙",
        "category": "グッズ",
        "jan_code": "4543112762399",
        "condition": "B",
        "subcategory": "フィギュア"
      }
    ],
    "last_page": 49738,
    "total_hits": 149213,
    "current_page": 1
  }
}

About the shop.lashinbang.com API

The Lashinbang Shop API provides access to secondhand anime merchandise data across 3 endpoints, covering product search, detail retrieval, and category enumeration. The search_products endpoint returns up to 12 fields per product — including price, condition, series, maker, store, and JAN code — and supports filtering by keyword, category, condition state, and sort order across Lashinbang's Japanese secondhand catalog.

Searching Products

The search_products endpoint accepts Japanese keyword strings (e.g. フィギュア, 鬼滅の刃) alongside optional filters for category, condition state, sort order, and pagination. Results are paginated and each call returns items, current_page, last_page, and total_hits. Each item in items includes id, title, url, image, price, condition, category, subcategory, series, maker, store, and jan_code. The state parameter accepts numeric values 1 (未開封/Unopened), 2 (状態A), or 3 (状態B). The sort parameter accepts arrival, price_asc, or price_desc.

Product Detail

The get_product_detail endpoint takes a numeric product_id — available from search_products results as items[*].id — and returns the full detail record for that listing. The response includes title, price, condition, description (condition notes and seller remarks), store, category, jan_code, image, and url. This endpoint is the primary way to retrieve free-text condition notes that aren't surfaced in search results.

Categories and Condition Filters

The get_categories endpoint returns all valid category identifiers and condition state options. Categories are Japanese text strings, not numeric IDs — for example グッズ, ゲーム, 男性向同人, 女性向同人, 書籍. The response includes a note field that explains this identifier scheme, a states array with id/name pairs for condition filters, and a categories array with name, type, and has_numeric_id per entry. Use this endpoint to keep your category filter values in sync with what search_products actually accepts.

Common use cases
  • Monitor price changes on specific anime figure series by polling search_products with a series keyword and sorting by price_asc.
  • Build a JAN code lookup tool that maps barcodes to current secondhand prices using get_product_detail.
  • Aggregate unopened (state=1) listings across multiple categories to surface mint-condition collectibles.
  • Power a collector's watchlist app that alerts when a specific maker or series appears in new arrivals using sort=arrival.
  • Enumerate all doujinshi categories via get_categories and present a localized browsing UI mapping Japanese category names to translated labels.
  • Cross-reference store field data from search_products to identify which physical Lashinbang store branch has specific inventory.
  • Compile market pricing data for secondhand anime goods research by querying multiple keywords and recording price and condition per result.
Pricing & limitsSee full pricing →
TierPriceCredits/monthRate limit
Free$0/mo1005 req/min
Hobby$30/mo1,00020 req/min
Developer$100/mo5,000250 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.

Frequently asked questions
Does Lashinbang (らしんばん) offer an official developer API?+
No. Lashinbang does not publish a public developer API or data feed. This Parse API is the structured way to access product and category data from their online shop.
What does the `condition` field in `search_products` and `get_product_detail` actually represent?+
Lashinbang grades used items on a three-tier scale: 未開封 (Unopened/sealed), 状態A (Condition A, near-new), and 状態B (Condition B, used with visible wear). The condition field in both endpoints returns this grade as a text string. The get_product_detail endpoint also returns a description field that contains the seller's free-text condition notes for that specific item.
Can I filter search results by subcategory or series name directly?+
The search_products endpoint supports filtering by main category (via the category parameter), condition state, keyword, and sort order. Subcategory and series are returned as response fields (subcategory, series) on each item but are not accepted as standalone filter parameters. You can fork this API on Parse and revise it to add subcategory or series-level filtering.
Does the API expose sold-out or sold listings, or only active inventory?+
The API returns active listings currently available on the Lashinbang online shop. Sold or expired listings are not included in search_products or get_product_detail results. Historical sold-price data is not currently covered. You can fork this API on Parse and revise it to add a sold-listings endpoint if that data becomes accessible.
Are there any quirks to be aware of with category identifiers?+
Yes. Unlike many product APIs that use numeric category IDs, Lashinbang categories are identified by Japanese text strings such as グッズ or 女性向同人. Passing a numeric ID or a romanized string to the category parameter will not return results. Always call get_categories first to retrieve the exact strings the API accepts.
Page content last updated . Spec covers 3 endpoints from shop.lashinbang.com.
Related APIs in MarketplaceSee all →
ebay.com API
Search and monitor eBay listings across any category, with support for active and completed/sold listings. Retrieve item details, pricing history, seller profiles and feedback, and category data. Filter by keyword, category, condition, seller, and sort order to support price research, market analysis, and inventory monitoring.
store.epicgames.com API
store.epicgames.com API
psacard.com API
Look up PSA certification details for graded collectible cards and search comprehensive population reports and price guides across all card categories. Browse collectible categories by set to discover grading data, pricing information, and population statistics.
craigslist.org API
Search and retrieve Craigslist listings for apartments, vehicles, jobs, services, and other categories across all regional sites to find exactly what you're looking for. Get detailed information about specific listings, browse by location and category, and compare options all in one place.
jp.mercari.com API
Search and browse millions of product listings on Mercari Japan with bilingual support, filtering by categories and getting detailed pricing, item specifications, and seller information. Access comprehensive marketplace data including product summaries, category overviews, and individual seller profiles to find exactly what you're looking for.
mercadolibre.com.ar API
Search for products, cars, and real estate listings on MercadoLibre Argentina and access detailed information including product specifications, customer reviews, and seller profiles. Get comprehensive market data to compare prices, evaluate sellers, and make informed purchasing decisions across multiple categories.
arrow.com API
Search for electronic components and instantly access pricing, availability, and detailed product specifications from Arrow Electronics' catalog. Look up manufacturers, retrieve bulk component data, and find the parts you need all in one place.
auctions.yahoo.co.jp API
Search active and completed Yahoo Auctions Japan listings, view detailed item information, and identify bargain deals by comparing current prices against market trends. Analyze seller profiles to make informed bidding decisions on Japanese auction items.