AliExpress Scraper

The NanoScrape AliExpress Scraper is an Apify actor that extracts product listings and prices from aliexpress.com. It returns 20 fields per result including title, rating, review_count, category, id, priced at $2/1k product found, with no API key or monthly subscription required.

Scrape product listings from AliExpress (source platform). Returns title, price, rating, seller name, shipping info, and order count. No login required. Pay-per-result.

Open on Apify →
Pricing
$2.00 / 1,000 product found
Runtime
Cloud (Apify)
Proxy
Datacenter

What you can scrape — 20 fields per result

FieldTypeExampleGroupFill %
idstring1005008077574550Core100%
titlestringمكبرات الصوت الكمبيوتر الكمبيوتر التلفزيون الكمبيوتر المحمول سطح المكتب السلكية سماعة ل...Core100%
store_namestring | null(populated when data available)Core
store_urlstring | null(populated when data available)Core
image_urlstring | nullhttps://ae-pic-a1.aliexpress-media.com/kf/S414e283039fc4bf6af0a012ba5d4c6d36.jpgCore100%
image_urlsarray | null["https://ae-pic-a1.aliexpress-media.com/kf/S414e283039fc4bf6af0a012ba5d4c6d36.jCore85%
source_urlstringhttps://www.aliexpress.com/item/1005008077574550.htmlCore100%
source_platformstringaliexpress.comCore100%
ratingnumber | null4.9Reviews / rating80%
review_countinteger | null(populated when data available)Reviews / rating
store_ratingnumber | null(populated when data available)Reviews / rating
categorystring | null518Metadata100%
scraped_atstring2026-09-16T05:02:08ZMetadata100%
pricenumber | null65.8Other100%
original_pricenumber | null138.14Other100%
currencystring | nullAEDOther100%
discount_percentinteger | null52Other100%
orders_countstring | nullفوق 2000 مباعةOther95%
shipping_infostring | null(populated when data available)Other
free_shippingboolean | null(populated when data available)Other

Input example — showcase (full detail)

{
  "searchQuery": "bluetooth speaker",
  "maxResults": 30,
  "sortBy": "default",
  "proxyConfiguration": {
    "useApifyProxy": true,
    "apifyProxyGroups": [
      "RESIDENTIAL"
    ]
  }
}

Input example — using search URLs (higher volume)

{
  "searchQuery": "bluetooth speaker",
  "maxResults": 50,
  "sortBy": "default",
  "proxyConfiguration": {
    "useApifyProxy": true,
    "apifyProxyGroups": [
      "RESIDENTIAL"
    ]
  },
  "searchUrls": [
    "https://www.aliexpress.com/w/wholesale-bluetooth-speaker.html"
  ]
}

Output example — real dataset item (PII scrubbed)

{
  "id": "1005008077574550",
  "title": "مكبرات الصوت الكمبيوتر الكمبيوتر التلفزيون الكمبيوتر المحمول سطح المكتب السلكية سماعة لاسلكية تعمل بالبلوتوث المتكلم صندوق الصوت بار الموسيقى المحمولة Caixa De Som نظام الصوت",
  "price": 65.8,
  "original_price": 138.14,
  "currency": "AED",
  "discount_percent": 52,
  "rating": 4.9,
  "review_count": null,
  "orders_count": "فوق 2000 مباعة",
  "store_name": null,
  "store_url": null,
  "store_rating": null,
  "image_url": "https://ae-pic-a1.aliexpress-media.com/kf/S414e283039fc4bf6af0a012ba5d4c6d36.jpg",
  "image_urls": [
    "https://ae-pic-a1.aliexpress-media.com/kf/S414e283039fc4bf6af0a012ba5d4c6d36.jpg",
    "https://ae-pic-a1.aliexpress-media.com/kf/S411e95ff216945b88278cd9f32e3bc155.jpg",
    "https://ae-pic-a1.aliexpress-media.com/kf/Sb507f01c5f25408e83e4bd4f8cb61f1b4.jpg",
    "https://ae-pic-a1.aliexpress-media.com/kf/S4599409422a2444f9ca3deb63563e572a.jpg",
    "https://ae-pic-a1.aliexpress-media.com/kf/S9077a5b394784085848af472d443d62bN.jpg",
    "https://ae-pic-a1.aliexpress-media.com/kf/Sc64cd50f3e694acca4d16dc18b207efdl.jpg"
  ],
  "shipping_info": null,
  "free_shipping": null,
  "category": "518",
  "source_url": "https://www.aliexpress.com/item/1005008077574550.html",
  "source_platform": "aliexpress.com",
  "scraped_at": "2026-09-16T05:02:08Z"
}

Cost math

Priced at $0.0020 per product found. 10 product founds ≈ $0.02, 100 ≈ $0.20, 1,000 ≈ $2.00. The first runs land inside Apify's $5/mo free-tier credit — pay only for what you extract, no monthly subscription.

Integrations

Run this actor directly on Apify (no code)

Click Open on Apify above to run aliexpress-scraper in your browser - no code, no install. In the Apify console you get:

Get your Apify API token

To run this actor from your own code you need an Apify API token. Get one in about a minute:

  1. Sign up for a free Apify account (Google, GitHub, or email).
  2. Go to Settings → Integrations → API tokens.
  3. Click Create a new API token. Copy it and keep it secret.

Free tier: Apify credits your account with $5 of platform usage every month, no credit card required. Enough to test any actor meaningfully - at $0.001 per result on typical scrapers, that is roughly 5,000 results for free every month.

Call from code

Run this actor from any language via the Apify REST API. Replace YOUR_TOKEN with your API token and adapt the input JSON to your needs.

curl -X POST "https://api.apify.com/v2/acts/santamaria-automations~aliexpress-scraper/run-sync-get-dataset-items?token=YOUR_TOKEN" \
  -H "Content-Type: application/json" \
  -d '{}'
// npm install apify-client
import { ApifyClient } from 'apify-client';

const client = new ApifyClient({ token: 'YOUR_TOKEN' });
const run = await client.actor('santamaria-automations/aliexpress-scraper').call({});
const { items } = await client.dataset(run.defaultDatasetId).listItems();
console.log(items);
# pip install apify-client
from apify_client import ApifyClient

client = ApifyClient('YOUR_TOKEN')
run = client.actor('santamaria-automations/aliexpress-scraper').call(run_input={})
items = list(client.dataset(run['defaultDatasetId']).iterate_items())
print(items)
// dotnet add package Apify.Client
using Apify.Client;

var client = new ApifyClient("YOUR_TOKEN");
var run = await client.Actor("santamaria-automations/aliexpress-scraper").CallAsync(new { });
var items = await client.Dataset(run.DefaultDatasetId).ListItemsAsync();
// Maven: com.apify:apify-client
import com.apify.client.ApifyClient;

ApifyClient client = new ApifyClient("YOUR_TOKEN");
ActorRun run = client.actor("santamaria-automations/aliexpress-scraper").call(Map.of());
List<Map<String,Object>> items = client.dataset(run.getDefaultDatasetId()).listItems();

Use with AI agents (MCP)

This actor is available on the Apify MCP server, so you can drive it from any MCP-compatible AI client - Claude Desktop, Claude.ai, Cursor, VS Code, LangChain, LlamaIndex, or a custom agent - without writing any code.

https://mcp.apify.com?tools=santamaria-automations/aliexpress-scraper

Example prompt once connected:

"Use <code>aliexpress-scraper</code> to run a scrape on my target list and give me the results as a table."

Clients that support dynamic tool discovery (Claude.ai, VS Code) receive the full input schema automatically via add-actor.

Use with no-code platforms

Trigger this actor from your favorite automation tool. Every platform below can call the Apify API in a few clicks - no code required.

  1. Add the n8n Apify node (installed by default on n8n Cloud; on self-hosted install @apify/n8n-nodes-apify).
  2. Set Actor to santamaria-automations/aliexpress-scraper.
  3. Choose operation Run Actor and get dataset, paste your input JSON, and connect a downstream node (Google Sheets, Postgres, webhook, ...).
  1. Create a new Zap with any trigger.
  2. Add a Webhooks by Zapier POST action to https://api.apify.com/v2/acts/santamaria-automations~aliexpress-scraper/run-sync-get-dataset-items?token=YOUR_TOKEN.
  3. Body: your input JSON. Content-Type: application/json.
  1. Create a new scenario.
  2. Add an HTTP module: URL https://api.apify.com/v2/acts/santamaria-automations~aliexpress-scraper/run-sync-get-dataset-items?token=YOUR_TOKEN, method POST, body raw JSON.
  3. Parse the response with a JSON module to iterate items downstream.
  1. Create a new workflow.
  2. Add an HTTP Request step: POST to https://api.apify.com/v2/acts/santamaria-automations~aliexpress-scraper/run-sync-get-dataset-items?token=YOUR_TOKEN.
  3. Access steps.http.$return_value in subsequent steps.
  1. Install the API Connector plugin.
  2. Add a new API: POST https://api.apify.com/v2/acts/santamaria-automations~aliexpress-scraper/run-sync-get-dataset-items?token=YOUR_TOKEN, body type JSON.
  3. Initialize the call with your input, then reference the response array in workflow actions.

FAQ

How much does the aliexpress-scraper cost?

$2.00 / 1,000 product found, billed per result on Apify. Apify's $5/month free tier covers the first runs. No monthly subscription — you only pay for what you extract.

What fields does it return?

20 fields per result. Full field catalog is listed in the 'What you can scrape' table above — includes core identifiers, descriptive text, dates, and any category-specific data.

Is scraping this site legal?

Scraping publicly available data is generally permitted in most jurisdictions, but GDPR applies to any personal data you collect. Review your local rules and consult a lawyer for commercial use.

Do I need an API key from the source platform?

No. This actor reads public pages over HTTP with datacenter proxies. No API key, no OAuth, no rate-limit management on your side.

How fresh is the data?

Every run pulls live data at execution time. Set up a schedule (daily/hourly/weekly cron) in the Apify console to keep your dataset current automatically.

Related actors in this category

Related tutorials

Open on Apify →