Qoo10 Product Scraper avatar

Qoo10 Product Scraper

Pricing

from $3.00 / 1,000 results

Go to Apify Store
Qoo10 Product Scraper

Qoo10 Product Scraper

Scrape Qoo10.jp, Japan's popular cross-border e-commerce platform: product name, price, discount, seller, rating, review count, images. No API key needed. Ideal for price comparison, competitor research, market analysis.

Pricing

from $3.00 / 1,000 results

Rating

0.0

(0)

Developer

cloud9

cloud9

Maintained by Community

Actor stats

0

Bookmarked

13

Total users

3

Monthly active users

6 days ago

Last modified

Share

Scrape Qoo10.jp, Japan's popular cross-border e-commerce platform: product name, price, discount, seller, rating, review count, images. No API key needed. Ideal for price comparison, competitor research, market analysis.

Use cases

  • Qoo10の価格・送料・発送元を継続監視する
  • 越境ECの競合出品者と価格を比較する
  • レビュー数と評価から売れ筋商品を特定する
  • 割引率の推移からセール時期を把握する
  • 仕入れ candidate の相場を素早く確認する

Input

ParameterTypeRequiredDefaultDescription
keywordstringYes"コスメ"Product search keyword (e.g., 'コスメ', 'イヤホン', 'ワイヤレス充電器')
maxResultsintegerNo50Maximum number of products to scrape (1-500)
proxyConfigurationobject (proxy)No{"useApifyProxy":true}Proxy settings for web scraping

Example input

{
"keyword": "コスメ",
"maxResults": 5,
"proxyConfiguration": {
"useApifyProxy": true
}
}

Output

Each dataset item looks like this — real output from an actual run of this Actor:

{
"productName": "【 新カラー5種発売 / 公式 / 8/28~】 #こんにゃくゼリーティント ジェリーフィットティンティッドグロウティント 全16色",
"price": 1707,
"originalPrice": 1760,
"discount": "1,760円 (53円 ↓)",
"seller": "ミルクタッチ 公式ショップ",
"rating": 4.7,
"reviewCount": 23026,
"imageUrl": "https://dp.image-qoo10.jp/dp2016/JP/GMKT.IMG/event/2026/03/31/59c7e719-be03-4f0c-937f-7e3395a70d70.png",
"productUrl": "https://www.qoo10.jp/item/%e3%83%9f%e3%83%ab%e3%82%af%e3%82%bf%e3%83%83%e3%83%81-%e6%96%b0%e3%82%ab%e3%83%a9%e3%83%bc5%e7%a8%ae%e7%99%ba%e5%a3%b2-%e5%…",
"shipping": "無料",
"shipsFrom": "KR",
"scrapedAt": "2026-09-06T15:21:11.383Z"
}
FieldType
productNamestring
pricenumber
originalPricenumber
discountstring
sellerstring
ratingnumber
reviewCountnumber
imageUrlstring
productUrlstring
shippingstring
shipsFromstring
scrapedAtstring

The dataset also ships a preset table view (Overview), so the key columns are readable straight away in Apify Console, and exportable to JSON, CSV, Excel, or XML.

How to run it

In Apify Console — open the Actor, fill in the input form, click Start, then download the results from the Dataset tab.

With the JavaScript client

import { ApifyClient } from 'apify-client';
const client = new ApifyClient({ token: 'YOUR_APIFY_TOKEN' });
const run = await client.actor('cloud9_ai/qoo10-scraper').call({
"keyword": "コスメ",
"maxResults": 5,
"proxyConfiguration": {
"useApifyProxy": true
}
});
const { items } = await client.dataset(run.defaultDatasetId).listItems();
console.log(items);

With the Python client

from apify_client import ApifyClient
client = ApifyClient('YOUR_APIFY_TOKEN')
run = client.actor('cloud9_ai/qoo10-scraper').call(run_input={
"keyword": "コスメ",
"maxResults": 5,
"proxyConfiguration": {
"useApifyProxy": True
}
})
for item in client.dataset(run['defaultDatasetId']).iterate_items():
print(item)

With the APIPOST https://api.apify.com/v2/acts/cloud9_ai~qoo10-scraper/run-sync-get-dataset-items?token=YOUR_APIFY_TOKEN with the input JSON as the body.

Notes and limits

  • No API key, account, or login is needed — just the input above.
  • maxResults caps how much a single run collects, which is also what caps the run's cost.
  • Requests are paced and failed requests are retried automatically, so runs stay inside the source's rate limits.
  • Supports Apify Proxy via proxyConfiguration; the default is fine for most runs.
  • Only publicly available data is collected. How you use the output is your responsibility, including the source's terms of use and any applicable data-protection law.

Support

Found a bug, or need a field that isn't in the output? Open an issue on the Issues tab of this Actor in Apify Console. Issues there are read and answered.

License

Apache-2.0