Suruga-ya Japan Collectibles Resale Listings Scraper
ECOMMERCE
Suruga-ya Japan Collectibles Resale Listings Scraper
Scrape suruga-ya.jp — Japan's largest second-hand hobby and collectibles catalog. Extract product listings for retro games, figures, trading cards (TCG), anime media, and hobby items by keyword or category.
What you get
Each record includes:
| Field | Description |
|---|---|
product_id |
Suruga-ya catalog SKU code |
title |
Product title in Japanese |
category |
Product category (e.g. ぬいぐるみ, ゲームミュージックCD) |
condition |
Condition badge from the listing card (e.g. 新入荷, 中古A) |
price_jpy |
Current listed price in JPY (null when sold out) |
market_price_jpy |
Suruga-ya reference/retail price (定価) in JPY |
stock_status |
Stock status: 在庫あり / 品切れ / 予約 |
product_url |
Full URL to the product detail page |
image_url |
Product thumbnail image URL |
release_date |
Release date in YYYY/MM/DD format when available |
scrapedAt |
ISO-8601 timestamp |
Why Suruga-ya?
Suruga-ya is the single largest Japanese second-hand hobby/collectibles catalog with approximately 2 million SKUs spanning:
- Retro games — Famicom, Super Famicom, PC-Engine, Mega Drive cartridges and consoles
- Trading card games — Pokemon, Yu-Gi-Oh!, Dragon Ball, One Piece TCG
- Figures — Nendoroid, Figma, prize figures, garage kits
- Anime media — Blu-ray, DVD, soundtracks, art books
- Hobby items — models, goods, doujinshi
This is the first Suruga-ya actor on the Apify store. It exposes both the live sale price AND the Suruga-ya reference price (teika/定価), which resellers use to assess margins against eBay, Mercari, and Amazon JP comps.
Input
| Parameter | Type | Description |
|---|---|---|
searchKeyword |
String | Keyword to search (e.g. pokemon, ファミコン, 遊戯王). Japanese terms return the best results. |
category |
String | Optional category code to narrow the search (leave blank for all categories). |
inStockOnly |
Boolean | When true, only returns items currently in stock. Default: false. |
maxItems |
Integer | Maximum number of listings to scrape. Leave blank for all results. |
Example input
{
"searchKeyword": "ファミコン",
"inStockOnly": true,
"maxItems": 100
}
Technical notes
- Suruga-ya is geo-restricted to Japan. This actor uses a JP residential proxy (DataImpulse) automatically — no proxy configuration required.
- The site returns 24 listings per page. Pagination is handled automatically.
price_jpyisnullfor sold-out items (品切れ).stock_statusdistinguishes between 在庫あり (in stock), 品切れ (sold out), and 予約 (pre-order).jan_code(JAN barcode) and detailed grading notes are only available on individual product detail pages, which are not crawled in this actor. Follow theproduct_urlto retrieve them if needed.
Example output
{
"product_id": "508432456",
"title": "pokemon(ロゴ) キーホルダー 「ポケットモンスター」 ポケモンセンター限定",
"category": "雑貨",
"condition": null,
"price_jpy": null,
"market_price_jpy": 660,
"stock_status": "品切れ",
"product_url": "https://www.suruga-ya.jp/product/detail/508432456?tenpo_cd=400498",
"image_url": "https://www.suruga-ya.jp/database/photo.php?shinaban=508432456&size=m",
"release_date": null,
"scrapedAt": "2026-06-04T15:43:58.054Z"
}