# Biccamera Urls Script (`hello.datawizards/biccamera-urls-script`) Actor

Extract structured product data from **Biccamera listings** including title, price, manufacturer, and points. Ideal for e-commerce research, price monitoring, competitor analysis, and automation. Supports multiple URLs, Japanese proxies, and delivers ready-to-use JSON for analytics and dashboards.

- **URL**: https://apify.com/hello.datawizards/biccamera-urls-script.md
- **Developed by:** [datawizards](https://apify.com/hello.datawizards) (community)
- **Categories:** Agents, Automation, E-commerce
- **Stats:** 2 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-Urls · Apify Actor

Extract **detailed product information** from Biccamera listings using clean, structured JSON – ideal for e-commerce research, competitor analysis, and price tracking.
Built and maintained by [DataWizards](https://linkedin.com/in/data-wizards-aa8080342).

***

### 📌 What Is `Biccamera-Urls`?

The `Biccamera-Urls` Apify Actor allows you to **scrape product data from specific Biccamera listing URLs**. This actor fetches details such as title, price, manufacturer, points, and discounts automatically — no login or manual browsing required.

Perfect for developers, researchers, e-commerce analysts, and resellers who want to **streamline data collection** from Biccamera listings in Japan.

***

### 🧠 Key Features

- ✅ **Structured JSON Output** for easy integration
- ✅ Extracts `title`, `manufacturer`, `price`, `off`, and `point` fields
- ✅ Supports **multiple listing URLs** in a single run
- ✅ Proxy support via Apify Proxy (**RESIDENTIAL IPs**, Japan-based)
- ✅ Lightweight, fast, and easy to integrate into your workflow
- ✅ Handles dynamic fields gracefully

***

### 🛠️ Input Schema

Use the actor like this:

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

#### 🔐 Proxy Configuration

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

***

### 📤 Output Example

```json
[
  {
    "manugacturer": null,
    "title": null,
    "price": null,
    "off": null,
    "point": "None(None)(None)"
  }
]
```

> ⚡ The output JSON is fully structured and ready for analytics, integrations, or dashboards.

***

### 🚀 Use Cases

- 🛍️ **Price Monitoring** – Track pricing and discounts of Biccamera products
- 📈 **Competitor Analysis** – Stay updated on competitor listings
- 🤖 **E-commerce Automation** – Feed data into price comparison or inventory systems
- 📊 **Market Research & Analytics** – Collect product data for dashboards or reports

***

### ✅ Best Practices

- Always use residential proxies for large-scale scraping.
- Validate your input URLs before running the actor.
- Avoid excessive repeated calls to reduce the risk of throttling.
- Consider batching URLs to optimize efficiency.

***

### 🤝 Support

Need custom outputs, specific fields, or integration help?
**DataWizards are here for you!**

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

We’re always ready to adapt your actor for **custom formats, simplified outputs, or new requirements**.

***

### 🧰 Need Something More?

Whether you need **custom scrapers, API integration**, or **simplified output formats**, we’ve got your back.
💡 *DataWizards = Smart, fast, and scalable data extraction.*

***

### 💬 Feedback & Bugs

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

***

#### 🏁 Start scraping smarter with `Biccamera-Urls` — extract Biccamera product data efficiently and reliably.

***

#### 🔍 Keywords (SEO)

`Biccamera scraper`, `Biccamera product extractor`, `Apify Biccamera`, `ecommerce data scraper`, `product URL scraper`, `reseller data`, `Japanese electronics API`, `structured JSON Biccamera`, `price tracking Biccamera`

***

# 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"
    ],
    "apifyProxyCountry": "JP"
  }
}
```

# 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"
        ],
        "apifyProxyCountry": "JP"
    }
};

// Run the Actor and wait for it to finish
const run = await client.actor("hello.datawizards/biccamera-urls-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"],
        "apifyProxyCountry": "JP",
    } }

# Run the Actor and wait for it to finish
run = client.actor("hello.datawizards/biccamera-urls-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"
    ],
    "apifyProxyCountry": "JP"
  }
}' |
apify call hello.datawizards/biccamera-urls-script --silent --output-dataset

```

## MCP server setup

```json
{
    "mcpServers": {
        "apify": {
            "type": "http",
            "url": "https://mcp.apify.com/?tools=fetch-actor-details,hello.datawizards/biccamera-urls-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/mK5L9eCVbtY0tpfr6/builds/hKdhCAHaSDvGaLTWW/openapi.json
