Alibaba, founded in 1999 by former English teacher Jack Ma, has grown to become a global leader in e-commerce. With its comprehensive platform, Alibaba enables suppliers to showcase their products to a vast international audience while providing buyers with efficient access to a wide range of goods and suppliers worldwide.

In this blog, we will explore how to scrape Alibaba’s vast database using JavaScript as our programming language of choice. To navigate around potential blocks and CAPTCHAs, we will utilize the Crawlbase API, ensuring an effective and uninterrupted scraping process. Let’s dive into the details of scraping Alibaba for valuable data and insights.

Table of Contents

I. Why Scrape Alibaba

II. Two Methods of Scraping Alibaba

III. What can you extract from Alibaba?

IV. Scraping using Puppeteer

V. Why Use Crawlbase

VI. Scrape using Crawling API and Cheerio

VII. Conclusion

VIII. Frequently Asked Questions

I. Why Scrape Alibaba?

Alibaba.com hosts an extensive array of products across more than 40 major categories, encompassing consumer electronics, machinery, apparel, and more. Scraping allows access to this vast repository of products, enabling businesses to gather valuable insights into market trends and product availability.

With buyers spanning across 190+ countries and regions, Alibaba facilitates a significant volume of communication between buyers and suppliers daily. Scraping this interaction data provides valuable insights into market demand, supplier responsiveness, and emerging trends.

Alibaba userbase

Source

Scraping Alibaba’s Search Engine Results Pages (SERP) offers a range of advantages for businesses:

  • Sourcing: By scraping product listings and supplier information, businesses can efficiently identify potential suppliers for their sourcing needs.
  • Price Monitoring: Scraping allows businesses to track pricing trends for specific products, enabling them to make informed pricing decisions.
  • Market Research: Scraping data from Alibaba SERP provides valuable market insights, including consumer preferences, product popularity, and emerging trends.
  • Competitor Analysis: Analyzing competitor product listings, pricing strategies, and customer reviews through scraping can inform businesses’ competitive strategies.
  • Product Improvement: Scraping allows businesses to gather feedback from customer reviews and product descriptions, aiding in product development and enhancement efforts.

II. Two Methods of Scraping Alibaba

In this project, we will cover two distinct methods for scraping Alibaba and extracting relevant data for analysis:

1. Using Puppeteer for Scraping:

  • We will demonstrate how to build a scraper using Puppeteer, a Node.js library that provides a high-level API for controlling headless Chrome or Chromium instances.
  • You will learn how to navigate through Alibaba’s website, interact with elements on the page, and extract relevant data such as product information, pricing, and supplier details.
  • The scraped data will be saved in a structured format that can be further processed and analyzed for insights.

2. Utilizing Crawling API and Cheerio for Scraping:

  • We will showcase an alternative approach to scraping Alibaba using the Crawling API in conjunction with Cheerio, a fast, flexible, and lean implementation of jQuery for the server.
  • This method will illustrate the advantages of using a dedicated Crawling API for web scraping tasks, including handling blocks, CAPTCHAs, and managing requests efficiently.
  • You will understand how to set up and utilize the Crawling API to fetch data from Alibaba’s website and parse it using Cheerio to extract relevant information.
  • A comparison between the Puppeteer-based approach and the Crawling API approach will be provided to highlight the differences and advantages of each method, emphasizing the superior performance and reliability of using the Crawling API for web scraping tasks.

By the end of this blog, you will have a deep understanding of how to scrape Alibaba effectively using both Puppeteer and Crawling API with Cheerio. This will allow you to select the most suitable approach based on your specific requirements and preferences.

III. What can you extract from Alibaba?

Before diving into the coding process, it’s crucial to familiarize ourselves with the structure of the HTML page of Alibaba’s Search Engine Results Page (SERP). By examining the HTML markup, we can identify the key elements necessary for extracting the following details programmatically. For the sake of this blog, we will use this Alibaba URL as an example.

Alibaba search page

To locate the data we want to scrape in the HTML code, we’ll need to inspect the elements on the page using your web browser’s developer tools. Here’s a general guide on where you might find each piece of information:

  1. Titles: Typically, the titles of products are contained within <h3>, <h4>, or similar heading tags within the product listings.
  2. Price: Prices are often found within specific <div>, <span>, or <p> elements with a class or ID that indicates they contain price information.
    i. URL: The URLs of the product listings are usually contained within <a> (anchor) tags, commonly in the href attribute.
  3. Product Images: Images are typically located within <img> tags, and the src attribute of these tags holds the URL of the image.
  4. Store Name: Store names can be found within specific elements such as <div>, <span>, or <a> tags, often with a class or ID indicating they contain store information.
  5. Store Link: Similar to the product URLs, store links are usually contained within <a> tags, typically in the href attribute.
  6. Minimum Item: Information about minimum order quantities may vary in its location within the HTML code. Look for specific elements or text that indicate minimum order requirements.
  7. Number of Results: This information is often displayed at the top or bottom of the search results page and may be within a <div> or other container with a unique identifier.

Once you identify the relevant HTML elements containing the data you need, you’ll need to write code that selects these elements based on their structure, class names, IDs, or other attributes, and then retrieves the text or attribute values from those elements. We’ll show you how it’s done on the next part of this blog.

IV. Scraping using Puppeteer

In this section, we will guide you on how to use Puppeteer for scraping Alibaba’s SERP. First, we need to set up a Node.js project and install the Puppeteer package. Follow the steps below:

  1. Create a new directory for your project:
1
mkdir alibaba-serp-scraper

This command will create an empty folder named alibaba-serp-scraper.

  1. Navigate into the newly created directory:
1
cd alibaba-serp-scraper && npm i puppeteer

By using this command we will navigate in the directory and install the puppeteer package including its dependencies into your project..

  1. Create a new JavaScript file named index.js where we’ll write the scraper’s code:
1
touch index.js

This command creates an empty index.js file in the project directory where you can write your Puppeteer scraper code.

Now that we have set up our project and installed Puppeteer, we can proceed to write the scraper code in the index.js file to extract data from Alibaba’s SERP.

Study the code below and copy it into your index.js file:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
// Import required modules
const puppeteer = require('puppeteer'),
fs = require('fs');

// Define an asynchronous function to scrape Bing search results
async function scrapeAlibabaSERP(searchString) {
// Launch a headless browser
const browser = await puppeteer.launch(),
// Create a new page in the browser
page = await browser.newPage();

// Navigate to the Alibaba search results page for the specified search string
await page.goto(`https://www.alibaba.com/trade/search?SearchText=${searchString.replaceAll(' ', '+')}`);

// Wait for the selector ".seb-pagination" to ensure that the search results are loaded
await page.waitForSelector('.seb-pagination');

// Extract relevant data from the search results using page.evaluate
const results = await page.evaluate(() => {
// Map over each search result element to create an array of result objects
return Array.from(document.querySelectorAll('.offer-list-wrapper .J-search-card-wrapper')).map((list, index) => ({
position: index + 1,
title: list.querySelector('[data-spm="d_title"]')?.textContent,
url: `https:${list.querySelector("[data-spm='d_title']")?.getAttribute('href')}`,
price: list.querySelector('.search-card-e-price-main')?.textContent,
isVerified: list.querySelector('.verified-supplier-icon') ? true : false,
image: `https:${list.querySelector('.search-card-e-slider__img')?.getAttribute('src')}`,
minItem: list.querySelector('.search-card-m-sale-features__item')?.textContent,
storeName: list.querySelector('.search-card-e-company')?.textContent,
storeLink: `https:${list.querySelector('.search-card-e-company')?.getAttribute('href')}`,
reviews: list.querySelector('.search-card-e-review')?.textContent,
}));
});
numberOfResults = await page.evaluate(() => document.querySelector('.seb-refine-result_all')?.textContent);

// Close the browser after scraping is complete
await browser.close();

// Log the results to the console
console.log({ results, numberOfResults }, 'Result');

// Write the results to a JSON file for further use
fs.writeFileSync('alibaba-serp.json', JSON.stringify({ results, numberOfResults }, null, 2));

// Return the scraped results
return results;
}

// Call the function with a sample search string (e.g "samsung s24 ultra")
scrapeAlibabaSERP('samsung s24 ultra');

Execute the above code by using a simple command:

1
node index.js

This should provide you with the JSON data in an easily readable structure.

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
{
"results": [
{
"position": 1,
"title": "Mobile Phone Case For Samsung Galaxy S24 Ultra Plus Tpu Pc Shockproof Covers For Samsung Galaxy S24 Plus",
"url": "https://www.alibaba.com/product-detail/Mobile-Phone-Case-For-Samsung-Galaxy_1600969904884.html?s=p",
"price": "US$1.29 - US$1.69",
"isVerified": true,
"image": "https://s.alicdn.com/@sc04/kf/Hcdcc7db446e9420f9378c0ec3482037bk.png_300x300.png",
"minItem": "Shipping: US$1.35 /piece",
"storeName": "Guangzhou Junbo Electronic Co., Ltd.",
"storeLink": "https://gzjunbo.en.alibaba.com/company_profile.html",
"reviews": "4.9/5.0 (68)"
},
{
"position": 2,
"title": "Wet Applied Privacy Hydrogel Tpu Film Full Covered Anti-spy Screen Protector For Samsung S21",
"url": "https://www.alibaba.com/product-detail/Wet-Applied-Privacy-Hydrogel-Tpu-Film_62089598725.html?s=p",
"price": "US$1.18 - US$1.40",
"isVerified": true,
"image": "https://s.alicdn.com/@sc04/kf/H7ac0cb2e940044a3b83d3c6bcde321b3J.jpg_300x300.jpg",
"minItem": "Min. order: 100 pieces",
"storeName": "Shenzhen Pulikin Technology Co., Ltd.",
"storeLink": "https://pulikin.en.alibaba.com/company_profile.html",
"reviews": "4.4/5.0 (8)"
},
{
"position": 3,
"title": "Full Glue Good Quality Soft Anti Spy Privacy Screen Film Anti Fingerprint For Samsung S24 S23 S22 S21 Plus Ultra Note 20 Ultra",
"url": "https://www.alibaba.com/product-detail/Full-Glue-Good-Quality-Soft-Anti_1601006825211.html?s=p",
"price": "US$0.79",
"isVerified": false,
"image": "https://s.alicdn.com/@sc04/kf/H651591d2ef254ad284d3556562b27c26G.jpg_300x300.jpg",
"minItem": "Shipping: US$3.68 /piece",
"storeName": "Guangdong Yichuang High-Tech Electronic Technology Co., Ltd.",
"storeLink": "https://cngdyichuang.en.alibaba.com/company_profile.html"
}
]
}

V. Why Use Crawlbase

When scraping websites, you may encounter bot detection measures, leading to your scraper being blocked eventually. To mitigate this risk, it’s essential to hide your real IP address. While using a pool of proxies may get the job done, building and managing such a system on your own can be time-consuming and costly. This is where the Crawling API comes into play.

Crawlbase’s Crawling API is built on top of millions of Datacenter and Residential IPs, providing you with a diverse range of IP addresses to use for each request. This rotation of IP addresses helps avoid detection and enhances the scraping process. Additionally, the API is integrated with AI technology, enabling it to mimic basic human interaction with the target website effectively.

By utilizing the Crawling API, you can enhance your scraping capabilities, unblock websites, minimize the risk of blocks and CAPTCHAs, and ensure a smoother and more reliable scraping experience.

Without Crawlbase With Crawlbase

VI. Scrape using Crawling API and Cheerio

To utilize the Crawling API with the code we’re creating, the initial step is to sign up and obtain the API key. Follow these steps:

  1. Sign Up for Crawlbase API: Start by signing up for the Crawlbase API. Navigate to their website and follow the registration process to create an account.
  2. Obtain API Credentials: After registering, obtain your API credentials from your account documentation. These credentials are essential for making requests to the Crawling API service.
  3. API Key and Secret: Your API credentials typically consist of an API key and a secret key. These credentials authenticate your requests to the Crawling API service.
  4. Keep Credentials Secure: Ensure that you keep your API credentials secure, as they are a crucial part of the web scraping process. Avoid sharing them publicly or exposing them in your code.
Crawlbase dashboard

Once you have acquired the API tokens for the Crawling API, you can proceed with setting up the coding
environment using the following commands:

  1. Create a Directory: This command creates a new directory named alibaba-serp-scraper where we’ll organize our project files.
1
mkdir alibaba-serp-scraper
  1. Navigate to the Directory: Move into the newly created directory to perform further actions.
1
cd alibaba-serp-scraper
  1. Create JavaScript File: This command creates a new JavaScript file named index.js where we’ll write our scraping code.
1
touch index.js
  1. Install Dependencies: This command installs the necessary dependencies, including crawlbase for interacting with the Crawling API and cheerio for parsing HTML.
1
npm install crawlbase cheerio

Once done, you can now copy the code below and paste it in your index.js file. Make sure to study it first to understand each line.

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
// import Crawlbase Crawling API package
const { CrawlingAPI } = require('crawlbase'),
cheerio = require('cheerio'),
// Import the 'fs' module
fs = require('fs');

// initializing Crawling API
const api = new CrawlingAPI({ token: 'Crawlbase_Token' }), // Replace it with your Crawlbase token
// Alibaba SERP URL
alibabaSerpURL = 'https://www.alibaba.com/trade/search?SearchText=samsung+s24+ultra';

// Crawling API get request execution
api
.get(alibabaSerpURL)
.then((response) => {
// Function call to parse data from HTML response
const scrapedData = parseDataFromHTML(response.body);

// Writing scraped data to a JSON file
fs.writeFileSync('alibaba_scraped.json', JSON.stringify({ scrapedData }, null, 2));
})
.catch((error) => {
console.log(error, 'ERROR');
});

// Function to parse data from HTML response
function parseDataFromHTML(html) {
try {
const $ = cheerio.load(html),
scrapedData = {
results: [],
numberOfResults: '',
};

// Extracting number of results
scrapedData['numberOfResults'] = $('.seb-refine-result_all').text().trim();
$('.offer-list-wrapper .J-search-card-wrapper').each((_, element) => {
// Extracting data for each search result
const title = $(element).find("[data-spm='d_title']").text(),
url = $(element).find("[data-spm='d_title']").attr('href'),
price = $(element).find('.search-card-e-price-main').text(),
image = $(element).find('.search-card-e-slider__img').attr('src'),
minItem = $(element).find('.search-card-m-sale-features__item').text(),
storeName = $(element).find('.search-card-e-company').text(),
storeLink = $(element).find('.search-card-e-company').attr('href'),
reviews = $(element).find('.search-card-e-review').text();

// Pushing extracted data to results array
scrapedData['results'].push({
title,
url: url.includes('http') ? url : `https:${url}`,
price,
image: image.includes('http') ? image : `https:${image}`,
minItem,
storeName,
storeLink: storeLink.includes('http') ? storeLink : `https:${storeLink}`,
reviews,
});
});

return scrapedData;
} catch (err) {
return err;
}
}

Again, you can execute the code by using the command below:

1
node index.js

This will provide a response in a readable JSON format structure.

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"scrapedData": {
"results": [
{
"title": "Cyberblue S23 ULTRA 5G 7.3Inch Original Mobile Phone 16GB+512GB Large Memory Smart Phone Beauty Camera Gaming Cellphone",
"url": "https://www.alibaba.com/product-detail/Cyberblue-S23-ULTRA-5G-7-3Inch_1600881085197.html?s=p",
"price": "$69.00 - $83.00",
"image": "https://s.alicdn.com/@sc04/kf/H72f8bd22d4b24a00b0423e45e8390ab0S.jpg_300x300.jpg",
"minItem": "Shipping: $30.28 /pieceMin. order: 1 pieceDelivery by Mar 19",
"storeName": "Shenzhen Cyber Blue Electronic Co., Ltd.",
"storeLink": "https://yingzhengcyberblue.en.alibaba.com/company_profile.html",
"reviews": "4.1/5.0 (77)"
},
{
"title": "Hard PC Shockproof Phone Cases For Samsung Galaxy S23 S24 Magnetic Magsafed Cover For Samsung S22 S21 Ultra With Stand Case",
"url": "https://www.alibaba.com/product-detail/Hard-PC-Shockproof-Phone-Cases-For_1600897902221.html?s=p",
"price": "$1.39 - $2.50",
"image": "https://s.alicdn.com/@sc04/kf/H5aa0f54078b94adab6c856dcd0847ee1t.jpg_300x300.jpg",
"minItem": "Min. order: 50.0 piecesEasy Return",
"storeName": "Guangzhou Junbo Electronic Co., Ltd.",
"storeLink": "https://junbochina.en.alibaba.com/company_profile.html",
"reviews": "4.9/5.0 (36)"
},
{
"title": "Mobile Phone Case For Samsung Galaxy S24 Ultra Plus Tpu Pc Shockproof Covers For Samsung Galaxy S24 Plus",
"url": "https://www.alibaba.com/product-detail/Mobile-Phone-Case-For-Samsung-Galaxy_1600969904884.html?s=p",
"price": "$1.29 - $1.69",
"image": "https://s.alicdn.com/@sc04/kf/Hcdcc7db446e9420f9378c0ec3482037bk.png_300x300.png",
"minItem": "Shipping: $0.62 /pieceMin. order: 50 pieces",
"storeName": "Guangzhou Junbo Electronic Co., Ltd.",
"storeLink": "https://gzjunbo.en.alibaba.com/company_profile.html",
"reviews": "4.9/5.0 (68)"
},
{
"title": "Shockproof Anti Yellow Enhanced Protection Rainbow Border Cell Phone Cover For Samsung S24 S23 Ultra Case For Iphone 15 Pro Max",
"url": "https://www.alibaba.com/product-detail/Shockproof-Anti-Yellow-Enhanced-Protection-Rainbow_1601030144430.html?s=p",
"price": "$1.87 - $2.20",
"image": "https://s.alicdn.com/@sc04/kf/Hd910ee3c71c34b3c98f97f4275919466H.jpg_300x300.jpg",
"minItem": "Min. order: 20 pieces",
"storeName": "Foshan Big Bear Electric Technology Co., Ltd.",
"storeLink": "https://bigbearcase.en.alibaba.com/company_profile.html",
"reviews": "4.8/5.0 (18)"
},
{
"title": "Trending products 2023 new arrivals Usb c 25W type c charger EU PD original chargers for Samsung Galaxy S23 Ultra",
"url": "https://www.alibaba.com/product-detail/Trending-products-2023-new-arrivals-Usb_1600832251082.html?s=p",
"price": "$2.80 - $3.20",
"image": "https://s.alicdn.com/@sc04/kf/H2d873e4d01ef41bf86dfe200fc2e1f64C.jpg_300x300.jpg",
"minItem": "Min. order: 20 pieces",
"storeName": "Shenzhen Nuochengda Electronics Co., Ltd.",
"storeLink": "https://ncdatech.en.alibaba.com/company_profile.html",
"reviews": "4.9/5.0 (155)"
},
{
"title": "Cellphone Original S24 Ultra 16GB+512GB Smartphone 7inch Unlocked dual card 5G Phones Android 13.0 Mobile phones",
"url": "https://www.alibaba.com/product-detail/Cellphone-Original-S24-Ultra-16GB-512GB_1600999468198.html",
"price": "$43.42 - $54.47",
"image": "https://s.alicdn.com/@sc04/kf/H3aba463770a64295bec18829bdf8eccbM.jpg_300x300.jpg",
"minItem": "Min. order: 1 pieceEasy Return",
"storeName": "Jiajiang Sixiang Home Decoration Engineering Co., Ltd.",
"storeLink": "https://sxjzs.en.alibaba.com/company_profile.html",
"reviews": "3.0/5.0 (36)"
},
{
"title": "Hot selling S24 Ultra 7.0 inch Android 13.0 12GB+512GB 48MP+72MP 7000 mA facial unlocking 5G smartphone",
"url": "https://www.alibaba.com/product-detail/Hot-selling-S24-Ultra-7-0_1600969407142.html",
"price": "$43.42 - $54.47",
"image": "https://s.alicdn.com/@sc04/kf/H771126c0475c4a3d9ee7842740b0cf4an.jpg_300x300.jpg",
"minItem": "Min. order: 1 piece",
"storeName": "Dongguan Zhongfu Electronic Technology Co., Ltd.",
"storeLink": "https://fukadi.en.alibaba.com/company_profile.html",
"reviews": "3.3/5.0 (197)"
}
]
}
}

VII. Conclusion

In conclusion, this blog has provided detailed insights into scraping Alibaba’s Search Result Page using two different approaches: Puppeteer and Crawling API with Cheerio. Both methods offer distinct advantages and considerations.

When using Puppeteer, you have direct control over a headless browser environment, allowing for dynamic interactions with web pages. This approach is suitable for scenarios where precise user interaction or complex JavaScript rendering is required.

On the other hand, utilizing the Crawling API with Cheerio offers a more robust and reliable solution for web scraping tasks. By utilizing a pool of rotating proxies and AI-powered capabilities, the Crawling API effectively avoids bot detection measures, minimizes the risk of blocks and CAPTCHAs, and enhances scraping performance.

For those seeking a more reliable and scalable scraper, integrating the Crawling API should be the preferred choice. It provides the necessary infrastructure and features to ensure uninterrupted scraping operations while maintaining data integrity and compliance.

Moreover, the code provided in this documentation serves as a valuable resource for enhancing your scraping knowledge beyond just Alibaba. You are free to adapt and extend the code to scrape data from various websites, allowing you to extract valuable insights for your projects and business needs.

Whether you opt for Puppeteer or the Crawling API with Cheerio, this article equips you with the tools and knowledge to develop effective scraping solutions and unlock the potential of web data for your endeavors.

If you want to check more blogs like this one, we recommend checking the following links:

How to Scrape Best Buy Product Data
How to Scrape Stackoverflow
How to Scrape Target.com
How to Scrape AliExpress Search Page

Should you have questions or concerns about Crawlbase, feel free to contact the support team.

VIII. Frequently Asked Questions

Q. Can I use other programming languages to integrate the Crawling API and build my scraper?

A. Yes, you have the flexibility to use a variety of programming languages and parsing libraries to integrate the Crawling API and construct your scraper. While Puppeteer and Cheerio were demonstrated in this documentation as examples of how to scrape Alibaba’s Search Result Page, they are not the only tools available for web scraping tasks. Python, for instance, offers popular libraries such as BeautifulSoup, Scrapy, and Requests, which are widely used for scraping and parsing HTML content.

Q. Does Crawlbase have its own scraper?

A. Yes, Crawlbase offers a built-in scraper through its Scraper API. By changing the endpoint of your API requests to https://api.crawlbase.com/scraper, you can receive the parsed response directly from the API. This product is especially useful for users who prefer a simpler approach to web scraping, as it eliminates the need to manually parse the HTML content. However, it’s important to note that the autoparse feature may not be suitable for all websites, as the supported websites are limited.

If you’re interested in seeing the power of the Scraper API in action, we recommend checking out this blog post: Scraping Bing Search Results with Scraper API. The blog demonstrates a comparison between using Puppeteer and utilizing the Scraper API to scrape Bing search results, showcasing the efficiency and effectiveness of the Scraper API in various scraping scenarios.