# Cvs Reviews Spider (`hello.datawizards/cvs-reviews-spider`) Actor

Extract structured customer reviews from CVS product pages with the Cvs Reviews Spider. Get ratings, titles, review text, product details, and brand insights in clean JSON. Ideal for sentiment analysis, research, quality monitoring, and automated data workflows.

- **URL**: https://apify.com/hello.datawizards/cvs-reviews-spider.md
- **Developed by:** [datawizards](https://apify.com/hello.datawizards) (community)
- **Categories:** AI, Agents, Lead generation
- **Stats:** 1 total users, 0 monthly users, 100.0% runs succeeded, 0 bookmarks
- **User rating**: No ratings yet

## Pricing

from $10.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

## Cvs Reviews Spider - Apify Actor

🕷️ **Automated web scraping actor for cvs**

### 📋 Overview

This Apify actor scrapes data from **cvs** using Standard Scrapy technology.
It was automatically generated and synchronized from the central repository.

### 🔗 Repository Information

| Property | Value |
|----------|-------|
| **Repository Name** | `cvs_reviews_spider_apify` |
| **Spider Name** | `cvs_reviews_spider` |
| **Target Domain** | cvs |
| **Technology Type** | Standard Scrapy |
| **Template Used** | `scrapy_template` |
| **Source Path** | `src/spiders/cvs` |
| **GitHub Repository** | [View Repository](https://github.com/hellodatawizards/cvs_reviews_spider_apify) |

### 🏠 Parent Repository

This actor is automatically synchronized from the central repository:

- **Central Repository**: [`hellodatawizards/central_repo`](https://github.com/hellodatawizards/central_repo)
- **Source Spider File**: `src/spiders/cvs/cvs_reviews_spider.py`
- **Synchronization**: Automatic via GitHub Actions
- **Last Sync**: 2025-11-14 17:52:42 UTC

### 🔄 Development Workflow

#### Making Changes

1. **DO NOT** edit files directly in this repository
2. Navigate to the [central repository](https://github.com/hellodatawizards/central_repo)
3. Edit the spider file at: `src/spiders/cvs/cvs_reviews_spider.py`
4. Commit and push changes to the central repository
5. The GitHub Action will automatically sync changes to this repository

#### Sync Process

- Changes to spider files trigger automatic synchronization
- The actor configuration and input schema are regenerated
- This README is updated with the latest information

### 📁 Repository Structure

```
├── src/
│   ├── main.py          # Apify actor entry point
│   └── spiders/
│       └── cvs_reviews_spider.py    # Spider implementation
├── .actor/
│   ├── actor.json       # Actor configuration
│   └── input_schema.json # Input parameters schema
├── requirements.txt     # Python dependencies
└── README.md           # This file
```

### 🚀 Usage

#### Local Development

```bash
## Clone the repository
git clone https://github.com/hellodatawizards/cvs_reviews_spider_apify.git
cd cvs_reviews_spider_apify

## Install dependencies
pip install -r requirements.txt

## Run locally (if applicable)
python src/main.py
```

#### Input Configuration

The actor accepts input parameters as defined in `.actor/input_schema.json`.
Common parameters may include:

- URLs to scrape
- Output format preferences
- Rate limiting settings
- Custom extraction parameters

### 🔗 Important Links

- 🏠 **[Central Repository](https://github.com/hellodatawizards/central_repo)** - Main development repository
- 📁 **[This Repository](https://github.com/hellodatawizards/cvs_reviews_spider_apify)** - Generated Apify actor
- 🕷️ **[Source Spider](https://github.com/hellodatawizards/central_repo/blob/main/src/spiders/cvs/cvs_reviews_spider.py)** - Original spider file
- 📚 **[Apify Documentation](https://docs.apify.com/)** - Apify platform documentation

### ⚠️ Important Notes

- **This repository is auto-generated** - Direct changes will be overwritten
- **All modifications** should be made in the central repository
- **Synchronization is automatic** - No manual intervention required
- **Issues and PRs** should be submitted to the central repository

***

*This README was automatically generated on 2025-11-14 17:52:42 UTC by the central repository sync process.*

# Actor input Schema

## `Urls` (type: `array`):

The 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
{
  "Urls": [
    "https://www.cvs.com/shop/well-market-deluxe-mixed-nuts-8-oz-prodid-335187"
  ],
  "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/cvs-reviews-spider").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/cvs-reviews-spider").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/cvs-reviews-spider --silent --output-dataset

```

## MCP server setup

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

```

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/WfrJaW9lHkwIFrfnM/builds/uhUYNmYL6dTukWqk0/openapi.json
