# Vevor Products Search Scraper (`powerai/vevor-products-search-scraper`) Actor

Scrape products from Vevor.com by providing a search URL, with automatic pagination and comprehensive product information extraction.

- **URL**: https://apify.com/powerai/vevor-products-search-scraper.md
- **Developed by:** [PowerAI](https://apify.com/powerai) (community)
- **Categories:** E-commerce, Integrations, Other
- **Stats:** 5 total users, 2 monthly users, 100.0% runs succeeded, 1 bookmarks
- **User rating**: No ratings yet

## Pricing

from $4.99 / 1,000 results

This Actor is paid per event and usage. You are charged both the fixed price for specific events and for Apify platform usage.

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

## 🛍️ Vevor Products Search Scraper

This actor allows you to scrape products from Vevor.com by providing a search URL. It automatically handles pagination and extracts comprehensive product information including prices, ratings, reviews, and availability.

### Features

- **URL-based Scraping:** Extract products by providing a complete Vevor search URL
- **Automatic Pagination:** Automatically navigates through pages until reaching the end or max items limit
- **Comprehensive Product Data:** Extract detailed information about each product including:
  - Product title and URL
  - SKU and SPU identifiers
  - Product images
  - Current price and original price
  - Customer ratings and review counts
  - Stock availability
  - Delivery information
- **Rich Media:** Includes product images
- **Customer Reviews:** Track product ratings and review counts

### Input Parameters

| Field      | Type    | Required | Description                                    |
|------------|---------|----------|------------------------------------------------|
| `searchUrl`| string  | Yes      | Complete Vevor search URL to scrape           |
| `maxItems` | integer | No       | Maximum number of products to fetch            |

### Output

The output is a main list of product objects, each containing:

- `searchUrl`: The original search URL used
- `title`: Product title
- `url`: Full URL to the product page
- `sku`: Product SKU identifier
- `spu`: Product SPU identifier
- `image`: Product image URL
- `price`: Current product price
- `marketPrice`: Original price before discount
- `rating`: Average customer rating
- `reviewsCount`: Number of customer reviews
- `inStock`: Stock availability status
- `deliveryDate`: Estimated delivery date
- `sn`: Product serial number
- `name`: Product name
- `categoryId`: Product category identifier
- `mainImage`: Main product image URL
- `scrapedAt`: Timestamp of when the product was scraped

Example output:

```json
[
  {
    "searchUrl": "https://www.vevor.com/outdoor-power-equipment-c_40252",
    "title": "VEVOR Backpack Leaf Blower, 79CC 2-Cycle Gas Leaf Blower with 3L Fuel Tank, 930CFM Air Volume 184MPH Speed, Ideal for Lawn Care, Leaf Cleaning, and Snow Removal",
    "url": "https://www.vevor.com/leaf-blowers-c_12671/vevor-backpack-leaf-blower-79cc-2-cycle-gas-leaf-blower-930cfm-air-volume-184mph-p_010868002775",
    "image": "https://img.vevorstatic.com/us%2FBBSRYCYJ79CCQTKKMV0%2Fgoods_img-v1%2Fgas-leaf-blower-m100-1.2.jpg?timestamp=1716534124000&format=webp",
    "sku": "BBSRYCYJ79CCQTKKMV0",
    "spu": "11421",
    "price": "224.9",
    "marketPrice": "",
    "rating": 4.4,
    "reviewsCount": 164,
    "inStock": "In Stock.",
    "deliveryDate": "as soon as Sat. Jan. 31",
    "sn": "BBSRYCYJ79CCQTKKMV0",
    "name": "VEVOR Backpack Leaf Blower, 79CC 2-Cycle Gas Leaf Blower with 3L Fuel Tank, 930CFM Air Volume 184MPH Speed, Ideal for Lawn Care, Leaf Cleaning, and Snow Removal",
    "categoryId": "43328",
    "mainImage": "https://img.vevorstatic.com/us%2FBBSRYCYJ79CCQTKKMV0%2Fgoods_thumb_220-v1%2Fgas-leaf-blower-m100-1.2.jpg?timestamp=1716534124000&format=webp",
    "scrapedAt": "2026-01-27T02:41:42.782Z"
  },
  ...
]
```

### Use Cases

- Price comparison and monitoring
- Market research and product analysis
- Inventory tracking
- Competitive analysis
- Product catalog building

### Notes

- Results are automatically paginated until reaching the end or max items limit
- All product information is extracted from the product listings page
- Ratings and reviews are updated in real-time
- The actor handles product deduplication automatically

# Actor input Schema

## `searchUrl` (type: `string`):

The complete Vevor search URL to scrape

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

Maximum number of products to fetch

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

Proxy settings for the actor

## Actor input object example

```json
{
  "searchUrl": "https://www.vevor.com/outdoor-power-equipment-c_40252",
  "maxItems": 50,
  "proxyConfiguration": {
    "useApifyProxy": false,
    "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 = {
    "searchUrl": "https://www.vevor.com/outdoor-power-equipment-c_40252",
    "maxItems": 50
};

// Run the Actor and wait for it to finish
const run = await client.actor("powerai/vevor-products-search-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 = {
    "searchUrl": "https://www.vevor.com/outdoor-power-equipment-c_40252",
    "maxItems": 50,
}

# Run the Actor and wait for it to finish
run = client.actor("powerai/vevor-products-search-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 '{
  "searchUrl": "https://www.vevor.com/outdoor-power-equipment-c_40252",
  "maxItems": 50
}' |
apify call powerai/vevor-products-search-scraper --silent --output-dataset

```

## MCP server setup

```json
{
    "mcpServers": {
        "apify": {
            "type": "http",
            "url": "https://mcp.apify.com/?tools=fetch-actor-details,powerai/vevor-products-search-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/m3YByHdUlhCj7F3Fg/builds/ggs3zBsWMqkPXCZ0e/openapi.json
