Rakuten Japan Product Scraper avatar

Rakuten Japan Product Scraper

Pricing

from $4.00 / 1,000 product scrapeds

Go to Apify Store
Rakuten Japan Product Scraper

Rakuten Japan Product Scraper

Extract public Rakuten Ichiba Japan product listings by keyword or search URL, including product links, JPY prices, shops, ratings, reviews, images, shipping text, and availability.

Pricing

from $4.00 / 1,000 product scrapeds

Rating

0.0

(0)

Developer

Muhammad Afzal

Muhammad Afzal

Maintained by Community

Actor stats

0

Bookmarked

2

Total users

1

Monthly active users

12 days ago

Last modified

Share

Scrapes public Rakuten Ichiba Japan search pages and returns one stable dataset record per unique product. It supports Japanese or English keywords, existing Rakuten search URLs, pagination, optional product-page enrichment, and Japan-targeted Apify Proxy.

Input

Use searchQueries for keywords such as ワイヤレスイヤホン, or pass startUrls containing URLs from https://search.rakuten.co.jp/. maxResults caps both returned products and product-scraped charges. includeDetails is optional and makes one additional request per product.

Output

Each record contains the product URL, title, JPY price and text, shop, rating, review count, shipping and availability text, images, optional category/description, the originating search URL, and scrapedAt. Run diagnostics are written to the SUMMARY key-value record.

The actor uses public pages only. It does not log in, place orders, access buyer accounts, or scrape private content. Rakuten may change page markup or apply access controls; blocked runs report an error and do not fabricate products.

Pricing

The actor charges $0.004 per unique product returned. The configured maximum result count is also the maximum result-event cost cap.

What data does Rakuten Japan Product Scraper return?

FieldTypeDescription
productIdstring or nullValue returned as productId.
titlestringValue returned as title.
productUrlstringValue returned as productUrl.
searchUrlstringValue returned as searchUrl.
shopNamestring or nullValue returned as shopName.
pricenumber or nullValue returned as price.
priceTextstring or nullValue returned as priceText.
currencystringValue returned as currency.
imageUrlstring or nullValue returned as imageUrl.
imageUrlsarrayValue returned as imageUrls.
ratingnumber or nullValue returned as rating.
reviewCountinteger or nullValue returned as reviewCount.
shippingTextstring or nullValue returned as shippingText.
availabilityTextstring or nullValue returned as availabilityText.
categorystring or nullValue returned as category.
descriptionstring or nullValue returned as description.
scrapedAtstringValue returned as scrapedAt.

Use cases

  • Monitor public products, prices, availability, sellers, and catalog changes.
  • Schedule repeatable collection and export results to downstream workflows.
  • Run a one-off research job and export the structured result as JSON, CSV, Excel, XML, or RSS from Apify.
  • Schedule the same input to monitor changes over time and send completed datasets to a webhook or integration.
  • Feed schema-shaped records into a database, spreadsheet, BI tool, or AI workflow with the source URL retained for verification.

Input example

{
"searchQueries": [
"ワイヤレスイヤホン"
],
"maxResults": 50,
"maxPagesPerQuery": 3,
"includeDetails": false,
"maxRequestRetries": 2,
"proxyConfig": {
"useApifyProxy": true,
"apifyProxyGroups": [
"RESIDENTIAL"
]
}
}

Run Rakuten Japan Product Scraper with the Apify API

import { ApifyClient } from 'apify-client';
const client = new ApifyClient({ token: process.env.APIFY_TOKEN });
const run = await client.actor('muhammadafzal/rakuten-japan-product-scraper').call({
"searchQueries": [
"ワイヤレスイヤホン"
],
"maxResults": 50,
"maxPagesPerQuery": 3,
"includeDetails": false,
"maxRequestRetries": 2,
"proxyConfig": {
"useApifyProxy": true,
"apifyProxyGroups": [
"RESIDENTIAL"
]
}
});
const { items } = await client.dataset(run.defaultDatasetId).listItems();
console.log(items);

You can also run the Actor from Apify Console, schedules, webhooks, the REST API, Make, Zapier, n8n, or the hosted Apify MCP server.

Responsible use

Use this Actor only for data you are authorized to access. Follow the target website's terms, robots and access policies, and applicable privacy, database, copyright, anti-spam, and data-protection laws. Do not use it to bypass authentication or other access controls, collect private data, harass people, or make high-impact decisions without independent verification.

Frequently asked questions

Can I schedule Rakuten Japan Product Scraper?

Yes. Use an Apify schedule to run the same saved input at a chosen interval, then connect a webhook or integration to process the dataset when the run finishes.

How should I test a new input?

Begin with the prefilled example or a small limit. Confirm that the output fields, source coverage, runtime, and live charges match your workflow before increasing the scope.

How do I export the results?

Open the run's default dataset in Apify Console and export JSON, CSV, Excel, XML, or RSS. Applications can retrieve the same records through the Apify API client or REST dataset endpoint.

Can an AI agent call this Actor?

Yes. Add muhammadafzal/rakuten-japan-product-scraper through the hosted Apify MCP server or call it through the API. The Actor's input and dataset schemas help agents construct valid requests and interpret returned records.