Scrape Alibaba Products By Keywords avatar
Scrape Alibaba Products By Keywords

Pricing

$9.99 / 1,000 results

Go to Apify Store
Scrape Alibaba Products By Keywords

Scrape Alibaba Products By Keywords

Developed by

shareze

shareze

Maintained by Community

Obtain a list of Alibaba products through keywords. The search URL can either be assembled manually or copied directly from the browser’s address bar. for example, `https://www.alibaba.com/trade/search?keywords=candle`

0.0 (0)

Pricing

$9.99 / 1,000 results

1

4

4

Last modified

5 days ago

This Apify Actor is designed to scrape product data from Alibaba based on specified keywords or URLs. It retrieves detailed information about products, including categories, prices, descriptions, and more.

How to Use

  1. Input Configuration: The Actor requires the following input parameters, which are defined in the input_schema.json file:

    • size (integer, required): The total number of products to scrape. Default is 20.
    • search_url (string, required): The Alibaba search URL. Example: https://www.alibaba.com/trade/search?keywords=candle.
    • skip_page_parameter (boolean, optional): Whether to skip the page parameter in the URL. Default is true.
  2. Run the Actor: You can run the Actor on the Apify platform or locally using the Apify SDK. Provide the required input parameters in the following format:

    {
    "size": 20,
    "search_url": "https://www.alibaba.com/trade/search?keywords=candle",
    "skip_page_parameter": true
    }
  3. Output: The Actor will return a JSON array containing the scraped product data. Each product includes fields such as:

    • url: The product URL.
    • subject: The product title.
    • categories: A list of categories the product belongs to.
    • price: The product price.
    • moq: Minimum order quantity.
    • productHtmlDescription: The product description in HTML format.
    • Additional fields like mediaItems, sku, and sampleInfo.
  4. Example Output:

    [
    {
    "url": "https://example.com/product/123",
    "subject": "High-Quality Candle",
    "categories": ["Home & Garden", "Candles"],
    "price": "$10.00",
    "moq": "100 pieces",
    "productHtmlDescription": "<p>This is a high-quality candle...</p>"
    }
    ]