# Biccamera Review Script (`hello.datawizards/biccamera-review-script`) Actor

Extract structured customer reviews from Biccamera product pages, including reviewer name, date, rating, title, review text, and purchase method. Ideal for e-commerce research, sentiment analysis, competitor monitoring, and market insights with reliable Japan-based residential proxy support.

- **URL**: https://apify.com/hello.datawizards/biccamera-review-script.md
- **Developed by:** [datawizards](https://apify.com/hello.datawizards) (community)
- **Categories:** Automation, E-commerce, Lead generation
- **Stats:** 1 total users, 0 monthly users, 100.0% runs succeeded, 0 bookmarks
- **User rating**: No ratings yet

## Pricing

from $4.00 / 1,000 results

This Actor is paid per event. You are not charged for the Apify platform usage, but only a fixed price for specific events.

Learn more: https://docs.apify.com/actors/running/actors-in-store.md#pay-per-event

## What's an Apify Actor?

Actors are web data automations that power AI and operations. They run on the Apify platform to scrape websites, process data, connect APIs, and automate workflows.
In Batch mode, an Actor accepts a well-defined JSON input, performs an action which can take anything from a few seconds to a few hours,
and optionally produces a well-defined JSON output, datasets with results, or files in key-value store.
In Standby mode, an Actor provides a web server which can be used as a website, API, or an MCP server.
Actors are written with capital "A".

## How to integrate an Actor?

If asked about integration, you help developers integrate Actors into their projects.
You adapt to their stack and deliver integrations that are safe, well-documented, and production-ready.
The best way to integrate Actors is as follows.

- **AI agents and MCP clients** — the [Apify MCP server](https://docs.apify.com/integrations/mcp.md) at `https://mcp.apify.com` (remote, streamable HTTP, OAuth on first use).
- **Agentic workflows and local Actor development** — [Agent Skills](https://apify.com/.well-known/agent-skills/index.json) with the [Apify CLI](https://docs.apify.com/cli/docs.md): `npm install -g apify-cli`, then `apify login`.
- **JavaScript/TypeScript projects** — the official [JS/TS client](https://docs.apify.com/api/client/js/docs.md): `npm install apify-client`.
- **Python projects** — the official [Python client](https://docs.apify.com/api/client/python/docs.md): `pip install apify-client`.
- **Any other language** — the [REST API](https://docs.apify.com/api/v2.md).

For usage examples, see the [API](#api) section below.

For more details, see Apify documentation as [Markdown index](https://docs.apify.com/llms.txt) and [Markdown full-text](https://docs.apify.com/llms-full.txt).

# README

***

## 📦 Biccamera Review Script · Apify Actor

Extract **detailed customer reviews** from Biccamera listings using structured JSON – perfect for e-commerce analysis, product sentiment tracking, and market research.
Built and maintained by [DataWizards](https://linkedin.com/in/data-wizards-aa8080342).

***

### 📌 What Is `Biccamera Review Script`?

The `Biccamera Review Script` Apify Actor allows you to **scrape customer reviews from Biccamera product pages**.
It collects reviewer name, date, rating, title, review text, and purchase method automatically – no login or manual browsing required.

Ideal for developers, data analysts, and e-commerce researchers who want **insights into customer feedback** and product performance.

***

### 🧠 Key Features

- ✅ **Structured Review Data** in JSON
- ✅ Extracts `user`, `date`, `rating`, `title`, `review_text`, and `purmode`
- ✅ Supports **multiple listing URLs** in a single run
- ✅ Proxy support via Apify Proxy (**RESIDENTIAL IPs**, Japan-based)
- ✅ Fast, reliable, and easy to integrate

***

### 🛠️ Input Schema

Here’s how to use the actor:

```json
{
  "ListingUrls": [
    "https://www.biccamera.com/bc/item/1621975/"
  ],
  "proxyConfiguration": {
    "useApifyProxy": true,
    "apifyProxyGroups": ["RESIDENTIAL"],
    "apifyProxyCountry": "JP"
  }
}
```

#### 🔐 Proxy Configuration

- **useApifyProxy**: Set to `true` (required)
- **apifyProxyGroups**: Use `"RESIDENTIAL"` for reliable results
- **apifyProxyCountry**: `"JP"` ensures IPs are recognized as Japanese

***

### 📤 Output Example

```json
[
  {
    "user": "匿名",
    "date": "（2025/8/23）",
    "rating": "3",
    "title": "ふつうによいです",
    "review_text": "ふつうによいです。泡切れもよい。",
    "purmode": "ビックカメラグループで購入 "
  }
]
```

> ⚡ The output JSON is ready for sentiment analysis, dashboards, and integration with analytics tools.

***

### 🚀 Use Cases

- 🛍️ **Customer Sentiment Analysis** – Track user satisfaction and feedback
- 📈 **Product Performance Monitoring** – Evaluate ratings and reviews over time
- 🤖 **E-commerce Research Automation** – Integrate reviews into data pipelines
- 📊 **Market Insights** – Aggregate customer feedback for reporting and decision-making

***

### ✅ Best Practices

- Use residential proxies for large-scale scraping
- Validate URLs before running the actor
- Avoid excessive repeated calls to reduce throttling risk
- Batch listing URLs for optimized performance

***

### 🤝 Support

Need custom review fields, output formats, or integration help?
**DataWizards are here for you!**

📩 Email: <hello.datawizard@gmail.com>
✉️ **Subject**: `Biccamera Review Script – Support Request`
🔗 LinkedIn: [linkedin.com/in/data-wizards-aa8080342](https://linkedin.com/in/data-wizards-aa8080342)

We can adapt your actor for **custom outputs, simplified JSON, or additional review details**.

***

### 🧰 Need Something More?

Whether building a custom scraper, integrating with APIs, or simplifying data output, we’ve got your back.
💡 *DataWizards = Smart, fast, and scalable data extraction.*

***

### 💬 Feedback & Bugs

Spotted a bug or need a new feature?
📧 Email: `hello.datawizard@gmail.com`
🛠️ **Subject**: `Bug Report – Biccamera Review Script`
Or open an issue directly on [Apify](https://apify.com).

***

#### 🏁 Start scraping smarter with `Biccamera Review Script` — extract Biccamera reviews efficiently and reliably.

***

# Actor input Schema

## `ListingUrls` (type: `array`):

The listing urls for the spider.

## `proxyConfiguration` (type: `object`):

Specifies proxy servers that will be used by the scraper in order to hide its origin.

## Actor input object example

```json
{
  "ListingUrls": [
    "https://www.biccamera.com/bc/item/1621975/"
  ],
  "proxyConfiguration": {
    "useApifyProxy": true,
    "apifyProxyGroups": [
      "RESIDENTIAL"
    ]
  }
}
```

# API

You can run this Actor programmatically using our API. Below are code examples in JavaScript, Python, and CLI, as well as the OpenAPI specification and MCP server setup.

## JavaScript example

```javascript
import { ApifyClient } from 'apify-client';

// Initialize the ApifyClient with your Apify API token
// Replace the '<YOUR_API_TOKEN>' with your token
const client = new ApifyClient({
    token: '<YOUR_API_TOKEN>',
});

// Prepare Actor input
const input = {
    "proxyConfiguration": {
        "useApifyProxy": true,
        "apifyProxyGroups": [
            "RESIDENTIAL"
        ]
    }
};

// Run the Actor and wait for it to finish
const run = await client.actor("hello.datawizards/biccamera-review-script").call(input);

// Fetch and print Actor results from the run's dataset (if any)
console.log('Results from dataset');
console.log(`💾 Check your data here: https://console.apify.com/storage/datasets/${run.defaultDatasetId}`);
const { items } = await client.dataset(run.defaultDatasetId).listItems();
items.forEach((item) => {
    console.dir(item);
});

// 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/js/docs

```

## Python example

```python
from apify_client import ApifyClient

# Initialize the ApifyClient with your Apify API token
# Replace '<YOUR_API_TOKEN>' with your token.
client = ApifyClient("<YOUR_API_TOKEN>")

# Prepare the Actor input
run_input = { "proxyConfiguration": {
        "useApifyProxy": True,
        "apifyProxyGroups": ["RESIDENTIAL"],
    } }

# Run the Actor and wait for it to finish
run = client.actor("hello.datawizards/biccamera-review-script").call(run_input=run_input)

# Fetch and print Actor results from the run's dataset (if there are any)
print(f"💾 Check your data here: https://console.apify.com/storage/datasets/{run.default_dataset_id}")
for item in client.dataset(run.default_dataset_id).iterate_items():
    print(item)

# 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/python/docs/quick-start

```

## CLI example

```bash
echo '{
  "proxyConfiguration": {
    "useApifyProxy": true,
    "apifyProxyGroups": [
      "RESIDENTIAL"
    ]
  }
}' |
apify call hello.datawizards/biccamera-review-script --silent --output-dataset

```

## MCP server setup

```json
{
    "mcpServers": {
        "apify": {
            "type": "http",
            "url": "https://mcp.apify.com/?tools=fetch-actor-details,hello.datawizards/biccamera-review-script"
        }
    }
}

```

The hosted server signs you in with OAuth on first connect, so no API token belongs in this config. Clients without OAuth support can send an `Authorization: Bearer <APIFY_API_TOKEN>` header instead, using a token from API & Integrations in Apify Console (https://console.apify.com/settings/integrations).

## OpenAPI specification

Download the OpenAPI definition: https://api.apify.com/v2/actors/XXetxgatlb4gHqAeK/builds/4MKZO8dZFeS5OPVYH/openapi.json
