Discover/Lashinbang API
live

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.

This API takes change requests — .
Endpoint health
verified 2d ago
search_buyback
search_products
get_stores
3/3 passing latest checkself-healing
Endpoints
3
Updated
21h ago

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.

Try it
Page number (1-based).
Sort order.
Results per page.
Stock filter.
Search keyword in Japanese.
Product category filter.
api.parse.bot/scraper/39626d1e-3b49-4d7a-83c8-558ccc28cdb6/<endpoint>
Ready to send
Fill in the parameters and hit sign in to send to see live response data here.
Call it over HTTPgrab a free API key at signup
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'
Python SDK · recommended

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)
All endpoints · 3 totalmissing one? ·

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.

Input
ParamTypeDescription
pageintegerPage number (1-based).
sortstringSort order.
limitstringResults per page.
stockstringStock filter.
keywordstringSearch keyword in Japanese.
categorystringProduct category filter.
Response
{
  "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.

Reliability & maintenanceVerified

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.

Last verified
2d ago
Latest check
3/3 endpoints passing
Maintenance
Monitored & self-healing
Will this API break when the source site changes?+
It's built not to. Every endpoint is health-checked on a schedule with automated test probes. When the source site changes and a check fails, the API is automatically queued for repair and re-verified — that's the self-healing layer. Each API page shows when its endpoints were last verified. And because marketplace APIs are shared, any fix reaches everyone using it.
Is this an official API from the source site?+
No — Parse APIs are independent, managed REST wrappers over publicly available data. That is the point: where a site has no official API (or only a limited one), Parse gives you a maintained, monitored endpoint for that data and keeps it working as the site changes — so you get a stable contract over a source that never promised one.
Can I fix or extend this API myself if I need a new endpoint or field?+
Yes — and you don't have to wait on us. This API was generated by the Parse agent, which stays attached. Describe the change in plain English ("add an endpoint that returns reviews", "fix the price field") in the revise box on the API page or via the revise_api MCP tool, and the agent rebuilds it against the live site in minutes. Contributing the change back to the public API is free.
What happens if I call an endpoint that has an issue?+
Errors are machine-readable: a bad call returns a clean status with the list of available endpoints and a repair hint, so an agent (or you) can recover or trigger a fix instead of failing silently. Confirmed failures feed the automatic repair queue.
Common use cases
  • Track used anime goods prices on Lashinbang to monitor market value for specific series or characters.
  • Build a buyback calculator that fetches buyback_price from search_buyback to help collectors value their inventory before visiting a store.
  • Aggregate in-stock product listings by condition and price to surface underpriced items across categories like ゲーム or グッズ.
  • Create a store-finder app using latitude and longitude from get_stores to locate the nearest Lashinbang branch.
  • Monitor new arrivals for a specific doujinshi series using arrival_desc sort and a Japanese keyword in search_products.
  • Cross-reference buyback_price against price from search_products to identify items with high resale margins on Lashinbang.
  • Build a catalog of used anime merchandise filtered by maker or series fields for a collection management tool.
Pricing & limitsSee full pricing →
TierPriceCredits/monthRate limit
Free$0/mo1005 req/min
Hobby$30/mo1,00020 req/min
Developer$100/mo5,000100 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 have an official developer API?+
No. Lashinbang does not publish a public developer API or documented data access program. This Parse API is the structured way to access product, buyback, and store data from lashinbang.com.
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?+
Both 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?+
Not currently. The API covers paginated product listings via 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.
Are there any known limitations with keyword search?+
Keywords must be supplied in Japanese to match Lashinbang's catalog, which is entirely in Japanese. Romaji or English-language queries are unlikely to return meaningful results. There is no built-in transliteration — you'll need to supply correctly formatted Japanese text (hiragana, katakana, or kanji) for reliable matches.
Page content last updated . Spec covers 3 endpoints from 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.
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.
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.
etsy.com API
Discover what shoppers are searching for on Etsy by accessing real-time trending keywords and popular search terms that can help you identify market demand and optimize your product listings. Get instant access to autocomplete suggestions and "Popular right now" trends to stay ahead of customer interests and improve your shop's visibility.
mercadolibre.com API
Search and retrieve product listings, details, customer reviews, categories, and current deals from MercadoLibre across multiple countries to find the best products and prices. Get comprehensive product information including specifications and user feedback to make informed purchasing decisions.
willhaben.at API
Search and browse listings across Austria's largest classifieds platform. Access marketplace goods, real estate (for sale and rent), cars, jobs, and full listing details — all from a single API.
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.
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.