1688.com Search Scraper avatar

1688.com Search Scraper

Try for free

2 hours trial then $89.99/month - No credit card required now

Go to Store
1688.com Search Scraper

1688.com Search Scraper

songd/1688-search-scraper
Try for free

2 hours trial then $89.99/month - No credit card required now

Search and scrapes product data (prices, sellers, sales) from 1688.com with keyword search, pagination, and proxy support. Built for bulk B2B data extraction using Apify.

You can access the 1688.com Search Scraper programmatically from your own JavaScript applications by using the Apify API. You can also choose the language preference from below. To use the Apify API, you’ll need an Apify account and your API token, found in Integrations settings in Apify Console.

1import { ApifyClient } from 'apify-client';
2
3// Initialize the ApifyClient with your Apify API token
4// Replace the '<YOUR_API_TOKEN>' with your token
5const client = new ApifyClient({
6    token: '<YOUR_API_TOKEN>',
7});
8
9// Prepare Actor input
10const input = {
11    "maxPages": 1,
12    "searchArray": [
13        {
14            "keyword": "4060显卡游戏本",
15            "maxPages": 20,
16            "priceStart": "50",
17            "priceEnd": "200"
18        },
19        {
20            "keyword": "波司登高级羽绒服",
21            "maxPages": 20,
22            "sortType": "price"
23        }
24    ],
25    "proxy": {
26        "useApifyProxy": true
27    },
28    "searchType": "pcmarket"
29};
30
31// Run the Actor and wait for it to finish
32const run = await client.actor("songd/1688-search-scraper").call(input);
33
34// Fetch and print Actor results from the run's dataset (if any)
35console.log('Results from dataset');
36console.log(`💾 Check your data here: https://console.apify.com/storage/datasets/${run.defaultDatasetId}`);
37const { items } = await client.dataset(run.defaultDatasetId).listItems();
38items.forEach((item) => {
39    console.dir(item);
40});
41
42// 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/js/docs

1688.com Search Scraper: B2B Prices & Bulk Data Extraction API in JavaScript

The Apify API client for JavaScriptis the official library that allows you to use 1688.com Search Scraper API in JavaScript or TypeScript, providing convenience functions and automatic retries on errors.

Install the apify-client

npm install apify-client

Other API clients include:

Developer
Maintained by Community

Actor Metrics

  • 4 monthly users

  • 2 stars

  • 88% runs succeeded

  • Created in Jan 2025

  • Modified 8 days ago