# Watsonsvn Pharser Spider (`getdataforme/watsonsvn-pharser-spider`) Actor

The Watsonsvn Pharser Spider scrapes customer reviews from Watsons Vietnam product pages, capturing ratings, titles, and product details. It delivers structured JSON for sentiment analysis, market research, or e-commerce optimization, using simple URL inputs.

- **URL**: https://apify.com/getdataforme/watsonsvn-pharser-spider.md
- **Developed by:** [GetDataForMe](https://apify.com/getdataforme) (community)
- **Categories:** Automation, Lead generation, E-commerce
- **Stats:** 2 total users, 0 monthly users, 100.0% runs succeeded, 0 bookmarks
- **User rating**: No ratings yet

## Pricing

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

### Watsonsvn Pharser Spider

The **Watsonsvn Pharser Spider** is an Apify Actor that scrapes customer reviews from Watsons Vietnam product pages. By providing product URLs, users can extract detailed review data, including ratings, titles, and product details, for sentiment analysis or market research.

### Input Parameters

The Actor requires a JSON input with the following parameter:

| Parameter | Type  | Description                                    | Default |
|-----------|-------|------------------------------------------------|---------|
| `Urls`    | Array | List of Watsons Vietnam product page URLs to scrape reviews from. | `[]`    |

#### Example Input

```json
{
  "Urls": [
    "https://www.watsons.vn/en/beplain-cleansing-foam-greenful-ph-balanced-80ml/p/BP_210078"
  ]
}
```

### Features

- **Detailed Review Extraction**: Captures review IDs, ratings, titles, review text, and product metadata.
- **Structured JSON Output**: Delivers clean, organized data for easy integration into analysis tools.
- **Scalable URL Processing**: Supports multiple URLs for batch scraping of review data.
- **Robust Error Handling**: Ensures consistent performance on dynamic Watsons Vietnam pages.
- **Comprehensive Metadata**: Includes product segments, dates, and translated review content.

### Output

The Actor outputs an array of review objects in JSON format, each containing comprehensive review details.

#### Example Output

```json
[
  {
    "Product_Id": "BP_210078",
    "Review_Id": "1209717487",
    "Rating": 5,
    "Title": "Gentle and Effective Cleanser",
    "Body": "Texture: Smooth and foamy\nEffectiveness: Cleans well without drying skin\nScent: Neutral and pleasant",
    "Sentiment": null,
    "Section": "",
    "Higher_Topic": null,
    "Granular_Topic": null,
    "Source": "WatsonsVN",
    "Full_Review": "Texture: Smooth and foamy\nEffectiveness: Cleans well without drying skin\nScent: Neutral and pleasant",
    "Review_Type": "Product Review",
    "Title_Trans": "Gentle and Effective Cleanser",
    "Body_Trans": "Texture: Smooth and foamy\nEffectiveness: Cleans well without drying skin\nScent: Neutral and pleasant",
    "Full_Review_Trans": "Texture: Smooth and foamy\nEffectiveness: Cleans well without drying skin\nScent: Neutral and pleasant",
    "Product_Name_Trans": "beplain Cleansing Foam Greenful pH-Balanced 80ml",
    "Product_Segment": "Skincare",
    "Gender": "Unisex",
    "Product_Segment2": "Cleanser",
    "Year_Quarter": "2025-Q2",
    "Sub_Brand": "beplain",
    "Format": "Cleansing Foam",
    "Country": "Vietnam",
    "Date": "04-05-2025",
    "Product_Name": "beplain Cleansing Foam Greenful pH-Balanced 80ml",
    "Brand": "beplain",
    "URL": "https://www.watsons.vn/en/beplain-cleansing-foam-greenful-ph-balanced-80ml/p/BP_210078",
    "Crawled_Date": "07-09-2025"
  }
]
```

### Use Cases

- **Customer Sentiment Analysis**: Analyze ratings and review text to gauge satisfaction with Watsons Vietnam products.
- **Market Research**: Collect feedback on skincare products like cleansers for competitive analysis.
- **Product Development**: Use review insights to inform improvements in product formulations.
- **E-commerce Optimization**: Enhance product listings with review data to boost customer engagement.

### Support

For bug reports or custom needs, please contact us at **support@getdataforme.com** or use our contact form: <https://getdataforme.com/contact/>.\
Make sure to include a clear subject line in your message, such as "Watsonsvn Pharser Spider Support."

Thank you for using the Watsonsvn Pharser Spider!

# 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.watsons.vn/en/3ce-cashmere-hug-lipstick-3.5g-.-08-hush-red/p/BP_216652"
  ],
  "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("getdataforme/watsonsvn-pharser-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("getdataforme/watsonsvn-pharser-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 getdataforme/watsonsvn-pharser-spider --silent --output-dataset

```

## MCP server setup

```json
{
    "mcpServers": {
        "apify": {
            "type": "http",
            "url": "https://mcp.apify.com/?tools=fetch-actor-details,getdataforme/watsonsvn-pharser-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/g7RA7K24l2AeRI08R/builds/LTYXdONcb6VqhIgNu/openapi.json
