# Alibaba Supplier Reviews Scraper (`piotrv1001/alibaba-supplier-reviews-scraper`) Actor

Extract Alibaba supplier reviews with ratings, buyer countries, product details, seller replies and photos and video references. Monitor supplier reputation from storefront or product URLs, filter media reviews and stop at known review IDs.

- **URL**: https://apify.com/piotrv1001/alibaba-supplier-reviews-scraper.md
- **Developed by:** [FalconScrape](https://apify.com/piotrv1001) (community)
- **Categories:** E-commerce
- **Stats:** 2 total users, 1 monthly users, 100.0% runs succeeded, 1 bookmarks
- **User rating**: No ratings yet

## Pricing

from $2.00 / 1,000 reviews

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?

An Actor is a serverless cloud program that runs on the Apify platform. It has two run modes.
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.

Apify vocabulary and the platform model are defined once, in the agent quickstart at https://apify.com/agents.md.

## 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.

Do not guess an integration path. Every one of them is in the agent quickstart at https://apify.com/agents.md: the Apify MCP server, Agent Skills with the Apify CLI, the JavaScript and Python clients, the REST API, and the account-free path for an agent with no human to sign in. It also carries the rule on stating cost before the first paid run.

For examples already wired to this Actor's own input schema, see the [API](#api) section below.

Each client library has reference documentation the quickstart does not restate: [JavaScript/TypeScript](https://docs.apify.com/api/client/js/docs.md) (`npm install apify-client`) and [Python](https://docs.apify.com/api/client/python/docs.md) (`pip install apify-client`).

# README

## Alibaba Supplier Reviews Scraper

Extract Alibaba supplier reviews with ratings, review text, buyer countries, product information, supplier replies, photos and video references. Use the results to compare suppliers, investigate complaints and monitor changes in buyer feedback.

### What you get

- Individual product reviews from a supplier’s feedback page, with stable review IDs.
- Ratings, review text, displayed dates and masked buyer names and countries.
- Reviewed product IDs, names, links and images when available.
- Supplier replies and order-level service and shipping scores.
- Photo URLs, video IDs and cover images when available.
- Supplier rating summaries and stopping reasons in the `RUN-SUMMARY` key-value record.

### Quick start

1. Enter Alibaba supplier storefront, company profile or feedback URLs. You can also use product URLs to identify their suppliers.
2. Set the maximum number of reviews and run the Actor.
3. Export the dataset as JSON, CSV, Excel or another supported Apify format.

```json
{
  "supplierUrls": [
    "https://brightest.en.alibaba.com/company_profile/feedback.html"
  ],
  "maxItems": 50
}
```

**Product URLs collect supplier-wide reviews, across the supplier’s products.** They do not restrict results to the input product. Multiple URLs identifying the same supplier are deduplicated.

### Input

| Field                   | Default          | Description                                                                             |
| ----------------------- | ---------------- | --------------------------------------------------------------------------------------- |
| `supplierUrls`          | Example supplier | Alibaba supplier or product URLs.                                                       |
| `maxItems`              | `50`             | Maximum number of reviews saved across all suppliers.                                   |
| `maxReviewsPerSupplier` | `1000`           | Maximum reviews saved for each supplier.                                                |
| `media`                 | `all`            | `all`, `photos` or `videos`. Filters individual reviews.                                |
| `stopAtReviewIds`       | `[]`             | Stop a supplier when a known review ID appears; excludes that review and later results. |
| `proxyConfiguration`    | Apify proxy      | Standard Apify connection settings.                                                     |

Suppliers are processed in input order. A supplier may use the total limit before later suppliers are visited. Set the per-supplier limit to spread results across suppliers.

### Output example

Illustrative record; optional fields may be null or empty.

```json
{
  "reviewId": "8000014653327",
  "supplier": {
    "companyId": "123456789",
    "companyName": "Example Supplier",
    "feedbackUrl": "https://example.en.alibaba.com/company_profile/feedback.html"
  },
  "rating": 5,
  "ratingType": "productQuality",
  "text": "Good quality and helpful service.",
  "dateText": "26 Aug 2026 23:49",
  "buyer": { "name": "A*****i", "countryCode": "IT", "country": "Italy" },
  "product": {
    "id": "1601112744794",
    "name": "Example product",
    "url": null,
    "image": null
  },
  "helpfulVotes": 0,
  "highlight": null,
  "media": [],
  "orderSubScores": [
    { "type": "shippingTime", "name": "shippingTime", "score": 5 }
  ],
  "reply": null
}
```

Each dataset row is one review, even when an order contains several reviewed products. Media entries include `type`, `url`, `coverUrl` and `videoId`; a video may have a cover and ID without a playable URL. Replies include text, name, company and displayed date when provided.

`RUN-SUMMARY` contains supplier summaries, saved counts, pagination progress and stopping reasons. Its order counts describe Alibaba’s displayed summary, which can differ from the available review history. Summary records are not dataset reviews.

### Pricing

**$2.00 per 1,000 reviews ($0.002 per saved review).** A small startup charge also applies: $0.00005 per GB of Actor memory, with a minimum of one event per run. Available replies, media references and supplier summaries are included. Duplicate reviews within a run are not charged twice. A new run that collects the same review again is a new result.

50 reviews cost $0.10; 1,000 reviews cost $2.00. Apify’s applicable platform or custom proxy charges may be additional. Set a maximum charge in the run settings to control spending.

### Monitor new feedback

Save review IDs from a previous run and pass recent IDs in `stopAtReviewIds`. The Actor follows the source’s review order and stops when it encounters a known ID. Source reordering or later edits to old reviews can make this unsuitable for a complete change audit.

### Limitations

- Only publicly available supplier feedback is collected. Unavailable suppliers are reported as failures, rather than empty successful results.
- Reviews follow the order returned by Alibaba. Complete historical coverage is not guaranteed.
- Older reviews may lack ratings; optional product links, replies and media can be missing.
- Dates retain the source’s display format because its timezone is not specified. Review text is returned as displayed.
- Buyer names remain masked. Videos are references; media files are not downloaded.
- Results saved before an interruption remain available. Resuming the same run deduplicates saved review IDs.

### API and integrations

Call the Actor through the Apify API or schedule recurring runs in the console. Use Apify dataset exports, webhooks and integrations to send results to your analysis workflow.

### Related Alibaba scrapers

- [Alibaba Listings Scraper](https://apify.com/piotrv1001/alibaba-listings-scraper) — discover products and suppliers by keyword, then pass its `supplierStoreUrl` or `productUrl` values to this Actor.
- [Alibaba Product Details Scraper](https://apify.com/piotrv1001/alibaba-product-details-scraper) — enrich product URLs with price tiers, variants, MOQ, specifications and supplier trade history. Use the same product URLs here to collect supplier-wide reviews.

### Support

For problems or feature requests, open an issue from the Actor’s Apify page and include the run ID and affected supplier URL.

# Actor input Schema

## `supplierUrls` (type: `array`):

Supplier storefront, company profile, feedback or product URLs. Product URLs collect reviews for the supplier, across its products.

## `maxItems` (type: `integer`):

Maximum total reviews saved.

## `maxReviewsPerSupplier` (type: `integer`):

Limit the number of reviews saved for each supplier.

## `media` (type: `string`):

Keep all reviews, or only individual reviews with photos or videos.

## `stopAtReviewIds` (type: `array`):

Stop each supplier when a previously collected review ID is encountered. The matching review is excluded.

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

Connection settings. Default Apify proxy is recommended.

## Actor input object example

```json
{
  "supplierUrls": [
    "https://brightest.en.alibaba.com/company_profile/feedback.html"
  ],
  "maxItems": 50,
  "maxReviewsPerSupplier": 1000,
  "media": "all",
  "stopAtReviewIds": [],
  "proxyConfiguration": {
    "useApifyProxy": true
  }
}
```

# Actor output Schema

## `reviews` (type: `string`):

No description

## `summary` (type: `string`):

No description

# 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 = {
    "supplierUrls": [
        "https://brightest.en.alibaba.com/company_profile/feedback.html"
    ]
};

// Run the Actor and wait for it to finish
const run = await client.actor("piotrv1001/alibaba-supplier-reviews-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 = { "supplierUrls": ["https://brightest.en.alibaba.com/company_profile/feedback.html"] }

# Run the Actor and wait for it to finish
run = client.actor("piotrv1001/alibaba-supplier-reviews-scraper").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 '{
  "supplierUrls": [
    "https://brightest.en.alibaba.com/company_profile/feedback.html"
  ]
}' |
apify call piotrv1001/alibaba-supplier-reviews-scraper --silent --output-dataset

```

## MCP server setup

```json
{
    "mcpServers": {
        "apify": {
            "type": "http",
            "url": "https://mcp.apify.com/?tools=fetch-actor-details,piotrv1001/alibaba-supplier-reviews-scraper"
        }
    }
}
```

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/tdQ3BaG7mcyUdlQOB/builds/mY9bhAzAgXgV1Zdjl/openapi.json
