AliExpress Scraper API

AliExpress Scraper
TLDR
- Search AliExpress products and get full product details — pricing, variants, images, seller info — all via a simple REST API.
- 5,000 free queries per month.
Here's a sample response for a product search:
{
"id": "1005007170995524",
"title": "Earbuds True Wireless Earphone Noise Cancelling Update Bluetooth 5.3 Headset HD Music Headphone In-Ear Handsfree With Mic",
"image_url": "https://ae01.alicdn.com/kf/S932a8a2d640f4b0d9ca435c91c870edb3.jpg",
"price": "5.43",
"original_price": "5.66",
"currency": "USD",
"discount": "4%",
"rating": 4.9,
"positive_feedback_rate": "98.0",
"orders_count": 321,
"category_ids": "44,100000306,63705"
}What is this?
The AliExpress Scraper API gives you real-time access to AliExpress product data.
Search by keyword, get full product details with pricing per variant, HD images, seller info, and package dimensions — all as clean, structured JSON.
Perfect for dropshipping tools, price monitoring, product research platforms, or any app that needs AliExpress data.
Why use it?
1. Detailed Data with 100% Accuracy
Get complete AliExpress product data in real time. Every price, every variant, every image — pulled live. No stale caches, no guesswork.
Product title, sale and list pricing per SKU, discount labels, variant attributes (color, size), HD images, seller info, package dimensions, stock quantities — it's all there.
2. Generous Free Plan
5,000 queries per month. Free. No credit card required.
That's 5,000 product searches or detail lookups every month at no cost. Build and test your app without big upfront costs.
3. Affordable Pricing
When you need more, our paid plans cost less than alternatives:
- $25 gets you 100K queries/month
- $75 gets you 1M queries/month
- $150 gets you 10M queries/month
How to use it?
Simple REST API. Here's how it works:
- Create an account at omkar.cloud to get your API key.
It takes just 2 minutes to sign up. You get 5,000 free requests every month for detailed AliExpress data — more than enough for most users to get their job done without paying a dime.
This is a well built product, and your search for the best AliExpress Scraper API ends right here.
- Make a request with it:
cURL:
curl -X GET "https://aliexpress-scraper-api.omkar.cloud/aliexpress-scraper/search?query=wireless%20earbuds" \
-H "API-Key: YOUR_API_KEY"Python:
import requests
api_key = "YOUR_API_KEY"
# Search for products
response = requests.get(
"https://aliexpress-scraper-api.omkar.cloud/aliexpress-scraper/search",
params={"query": "wireless earbuds"},
headers={"API-Key": api_key}
)
print(response.json())- Get structured AliExpress data and use it.
That's it. Keyword to product data in milliseconds.
API Reference
Product Search
GET https://aliexpress-scraper-api.omkar.cloud/aliexpress-scraper/search
query(required) — Keyword or phrase to search for.page(optional, default:1) — Page number.
Example:
import requests
response = requests.get(
"https://aliexpress-scraper-api.omkar.cloud/aliexpress-scraper/search",
params={"query": "wireless earbuds"},
headers={"API-Key": "YOUR_API_KEY"}
)
print(response.json())Sample Response:
{
"count": 40100,
"per_page": 20,
"current_page": 1,
"total_pages": 2005,
"next": "https://aliexpress-scraper-api.omkar.cloud/aliexpress-scraper/search?query=wireless+earbuds&page=2",
"previous": null,
"results": [
{
"id": "1005007170995524",
"title": "Earbuds True Wireless Earphone Noise Cancelling Update Bluetooth 5.3 Headset HD Music Headphone In-Ear Handsfree With Mic",
"image_url": "https://ae01.alicdn.com/kf/S932a8a2d640f4b0d9ca435c91c870edb3.jpg",
"price": "5.43",
"original_price": "5.66",
"currency": "USD",
"discount": "4%",
"rating": 4.9,
"positive_feedback_rate": "98.0",
"orders_count": 321,
"category_ids": "44,100000306,63705"
},
{
"id": "1005008481982828",
"title": "A99E-Earbuds,Over The Ear Earbuds Earbuds True Wireless Open Ear Earbuds Bluetooth 5.4, Ipx5 Earbuds Noise Cancellation",
"image_url": "https://ae01.alicdn.com/kf/S50223ba5440341258f89534c4a5e06a9d.jpg",
"price": "26.03",
"original_price": "24.65",
"currency": "USD",
"discount": "0%",
"rating": null,
"positive_feedback_rate": "",
"orders_count": null,
"category_ids": "44,100000306,63705"
}
]
}Product Details
GET https://aliexpress-scraper-api.omkar.cloud/aliexpress-scraper/product
product_id(required) — AliExpress product ID (e.g.,1005007170995524).
Example:
import requests
response = requests.get(
"https://aliexpress-scraper-api.omkar.cloud/aliexpress-scraper/product",
params={"product_id": "1005007170995524"},
headers={"API-Key": "YOUR_API_KEY"}
)
print(response.json())Sample Response:
{
"id": "1005007170995524",
"title": "Earbuds True Wireless Earphone Noise Cancelling Update Bluetooth 5.3 Headset HD Music Headphone In-Ear Handsfree With Mic",
"category_id": 63705,
"listing_url": "https://ar.aliexpress.com/item/1005007170995524.html",
"images": [
"https://ae01.alicdn.com/kf/S408f97b7af7b4c54bc04c46285559f704.jpg",
"https://ae01.alicdn.com/kf/Sd9ea2a5491f24a759d6d43e545fbd30di.jpg",
"https://ae01.alicdn.com/kf/S3cc9aaf17a3640e68681d32c7d2c10609.jpg",
"https://ae01.alicdn.com/kf/Sa17a49b1fdab42e9976201fb9955c098L.jpg",
"https://ae01.alicdn.com/kf/S24a669a4c83442819e43b437b2bf3c60T.jpg",
"https://ae01.alicdn.com/kf/Se0a77bc7d00e4fef8145fb984786c300x.jpg"
],
"images_hd": [
"https://ae01.alicdn.com/kf/S408f97b7af7b4c54bc04c46285559f704.jpg",
"https://ae01.alicdn.com/kf/Sd9ea2a5491f24a759d6d43e545fbd30di.jpg",
"https://ae01.alicdn.com/kf/S3cc9aaf17a3640e68681d32c7d2c10609.jpg",
"https://ae01.alicdn.com/kf/Sa17a49b1fdab42e9976201fb9955c098L.jpg",
"https://ae01.alicdn.com/kf/S24a669a4c83442819e43b437b2bf3c60T.jpg",
"https://ae01.alicdn.com/kf/Se0a77bc7d00e4fef8145fb984786c300x.jpg"
],
"video_url": null,
"package": {
"length_cm": 14,
"width_cm": 10,
"height_cm": 8,
"weight_kg": 0.093
},
"currency": "USD",
"base_currency": "CNY",
"variants": [
{
"attribute_name": "Color",
"attribute_id": "14",
"has_color": true,
"is_size": false,
"options": [
{
"value_id": 193,
"name": "black",
"image_url": "https://ae01.alicdn.com/kf/S932a8a2d640f4b0d9ca435c91c870edb3.jpg",
"thumbnail_url": "https://ae01.alicdn.com/kf/S932a8a2d640f4b0d9ca435c91c870edb3.jpg_120x120.jpg"
}
]
}
],
"sku_pricing": [
{
"sku_id": "12000039691611222",
"variant_ids": "193",
"list_price": 9.94,
"sale_price": 4.57,
"formatted_sale_price": "US $4.57",
"discount_label": "54% off",
"available_quantity": 5
}
],
"seller": {
"name": "Stone's Store",
"id": "1103576287",
"logo_url": "https://ae01.alicdn.com/kf/Se90fceedf9d34ad1a8979283c98a1e45I/144x144.png"
},
"has_welcome_deal": false
}FAQs
❓ What data does the API return?
Product Search returns per product:
- Product ID, title, image URL
- Sale price, original price, currency, discount
- Star rating, positive feedback rate
- Order count, category IDs
Product Details returns:
- Product ID, title, category ID, listing URL
- All product images (standard + HD)
- Video URL (when available)
- Package dimensions (length, width, height, weight)
- Currency info (display + base currency)
- Full variant breakdown (color, size, etc.) with images per option
- Per-SKU pricing: list price, sale price, discount label, stock quantity
- Seller name, ID, and logo
All in structured JSON. Ready to use in your app.
❓ How accurate is the data?
Data is pulled from AliExpress in real time. Every API call fetches live data — not cached or stale results.
Prices, variants, stock levels, and seller info reflect what's on AliExpress right now.
❓ Where do I find the product ID?
The product ID is in any AliExpress product URL. For example:
https://www.aliexpress.com/item/1005007170995524.html → product ID is 1005007170995524
You can also get product IDs from the Product Search endpoint results.
❓ Does it return variant-level pricing?
Yes. The Product Details endpoint returns pricing for every SKU variant — sale price, list price, discount percentage, and available stock. Each SKU maps to specific variant options (e.g., "Color: black").
❓ Can I use this for dropshipping?
Absolutely. The API gives you everything a dropshipping tool needs: product titles, images, variant-level pricing, stock quantities, package dimensions for shipping estimates, and seller info.
❓ Tell me about Omkar Cloud.
We're an API services company with 20+ tools for OCR, document processing, and developer APIs. Some things we are proud of:
- We built Botasaurus, an open-source framework with 3.7K+ GitHub stars
- Sponsored by 1000+ developers on GitHub
❓ How much does it cost?
- Free — $0 — 5,000 queries/month
- Starter — $25 — 100,000 queries/month
- Grow — $75 — 1,000,000 queries/month
- Scale — $150 — 10,000,000 queries/month
Why we're affordable: Low overhead. We run lean and pass the savings to you.
Note: You get 5,000 free queries every month. Most users find this covers their needs.
❓ How do I get a refund?
If the product doesn't meet your needs within 90 days, get a refund in 2 clicks.
-
Go to Transactions Page

-
Click "Request Refund"

-
Confirm by clicking Request Refund again. The amount will be refunded within 1-2 business days. We'll email you updates.

No emails. No explanations. Simple 2-click process.
❓ Is there a catch in refunds?
No catch.
It's a simple 2-click process, exactly as described above.
Questions? We have answers.
Reach out anytime. We will solve your query within 1 working day.

