# BestBuy Urls Scraper (`hello.datawizards/bestbuy-urls-scraper`) Actor

The BestBuy-Urls-Scraper Apify Actor extracts detailed product data from BestBuy listings in structured JSON. Perfect for price tracking, inventory management, and market research, it supports multiple URLs, Apify Proxy, and rich attributes like SKU, price, and ratings. Built by DataWizards.

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

## Pricing

from $0.005 / actor start

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/platform/actors/running/actors-in-store#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

## 🍼 Firstcry Reviews Scraper

Extract detailed customer reviews from [FirstCry.com](https://www.firstcry.com) product pages. Ideal for baby-care brands, e-commerce analysts, and sentiment-analysis projects.

***

### 🌐 Website

**Target:** https://www.firstcry.com\
**Function:** Scrape user reviews, ratings, and metadata for FirstCry products.

***

### 📥 Input Example

```json
{
  "proxyConfiguration": {
    "useApifyProxy": true
  },
  "urls": [
    "https://www.firstcry.com/babyhug/babyhug-pro-bubble-care-premium-tape-style-diaper-newborn-nb-size-86-pieces-new-and-improved-superior-fit/10477470/product-detail"
  ]
}
```

- `proxyConfiguration.useApifyProxy`: Enable Apify Proxy for reliable crawling.
- `urls`: List of FirstCry product page URLs.

***

### 📤 Output Example

```json
[
  {
    "review_id": "30918077",
    "rating": "5",
    "review_text": "Love it. Soft and comfortable for new born babies.",
    "review_title": "Love it",
    "username": "hosanna haralu",
    "review_date": "5/3/2025",
    "response_date": "4 May 2025",
    "is_buyer_verified": true,
    "product_id": "10477470",
    "size": "Newborn (NB)",
    "quantity": "86",
    "color": "FFFFFF",
    "price_from": "0.00",
    "price_to": "0.00",
    "helpful_yes_count": "0",
    "helpful_no_count": "0",
    "all_record_count": "910",
    "fc_response": "",
    "images": null
  },
  {
    "review_id": "30890727",
    "rating": "5",
    "review_text": "Feel comfortable no leakage",
    "review_title": "Soft and comfortable",
    "username": "Bhanu Narayan",
    "review_date": "5/3/2025",
    "response_date": "3 May 2025",
    "is_buyer_verified": true,
    "product_id": "10477473",
    "size": "Medium (M)",
    "quantity": "25",
    "color": "FFFFFF",
    "price_from": "0.05",
    "price_to": "0.12",
    "helpful_yes_count": "0",
    "helpful_no_count": "0",
    "all_record_count": "910",
    "fc_response": "",
    "images": null
  }
]
```

> Returns an array of review objects with rating, text, dates, product details, and verification flags.

***

### ✅ Use Cases

- Baby-care product sentiment analysis
- E-commerce performance monitoring
- Review aggregation for market research
- Quality assurance and customer feedback tracking

***

### 🚀 How It Works

1. Supply one or more FirstCry product URLs and enable proxy.
2. The actor navigates to each URL and scrapes:

   - Review ID, title, text, and star rating
   - Reviewer username and verification status
   - Review and response dates
   - Product metadata (size, quantity, color, price)
   - Helpfulness votes and total record count
3. Outputs a JSON array of structured review objects.

***

### 🔧 Advanced Options

- **Apify Datasets**: Store and query your reviews at scale.
- **Webhooks**: Trigger downstream workflows after each run.
- **Scheduling**: Automate daily or weekly review scrapes.

***

### 🛟 Support

For questions, custom output formats, or bug reports:

📧 **Email:** <support@getdataforme.com>
🌐 **Contact:** <https://getdataforme.com/contact/>

> Please include your Apify run ID or input URL in the subject.

***

### 📝 Author

Built and maintained by **GetDataForMe** — making web data accessible and reliable.

```
```

# Actor input Schema

## `urls` (type: `array`):

A list of URLs of the web pages you want to scrape data from.

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

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

## Actor input object example

```json
{
  "urls": [
    "https://www.expedia.com/Prague-Hotels-Art-Nouveau-Palace-Hotel.h445270.Hotel-Information"
  ],
  "proxyConfiguration": {
    "useApifyProxy": true
  }
}
```

# 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 = {
    "urls": [
        "https://www.expedia.com/Prague-Hotels-Art-Nouveau-Palace-Hotel.h445270.Hotel-Information"
    ],
    "proxyConfiguration": {
        "useApifyProxy": true
    }
};

// Run the Actor and wait for it to finish
const run = await client.actor("hello.datawizards/bestbuy-urls-scraper").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 = {
    "urls": ["https://www.expedia.com/Prague-Hotels-Art-Nouveau-Palace-Hotel.h445270.Hotel-Information"],
    "proxyConfiguration": { "useApifyProxy": True },
}

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

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

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

```

## CLI example

```bash
echo '{
  "urls": [
    "https://www.expedia.com/Prague-Hotels-Art-Nouveau-Palace-Hotel.h445270.Hotel-Information"
  ],
  "proxyConfiguration": {
    "useApifyProxy": true
  }
}' |
apify call hello.datawizards/bestbuy-urls-scraper --silent --output-dataset

```

## MCP server setup

```json
{
    "mcpServers": {
        "apify": {
            "command": "npx",
            "args": [
                "mcp-remote",
                "https://mcp.apify.com/?tools=hello.datawizards/bestbuy-urls-scraper",
                "--header",
                "Authorization: Bearer <YOUR_API_TOKEN>"
            ]
        }
    }
}

```

## OpenAPI specification

Download the OpenAPI definition: https://api.apify.com/v2/actors/Yqxxld32HOHgqsaEc/builds/ldzua0X7CzmGaOcRj/openapi.json
