curl --request POST \
--url https://api.scrapeunblocker.com/goods/aliexpress-search \
--header 'x-scrapeunblocker-key: <api-key>'import requests
url = "https://api.scrapeunblocker.com/goods/aliexpress-search"
headers = {"x-scrapeunblocker-key": "<api-key>"}
response = requests.post(url, headers=headers)
print(response.text)const options = {method: 'POST', headers: {'x-scrapeunblocker-key': '<api-key>'}};
fetch('https://api.scrapeunblocker.com/goods/aliexpress-search', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"detail": [
{
"loc": [
"<string>"
],
"msg": "<string>",
"type": "<string>"
}
]
}Scrape AliExpress search results
Searches AliExpress for keyword and returns the products as JSON: title, product url, price (numeric) + priceFormatted + currency/currencySymbol, originalPrice, rating, orders (sold count) and images. Sort with sort (relevance / orders / price_asc / price_desc / newest) and collect up to max_results across pages. AliExpress localises price by region, so the currency follows the exit IP; pass proxy_country to pin it.
curl --request POST \
--url https://api.scrapeunblocker.com/goods/aliexpress-search \
--header 'x-scrapeunblocker-key: <api-key>'import requests
url = "https://api.scrapeunblocker.com/goods/aliexpress-search"
headers = {"x-scrapeunblocker-key": "<api-key>"}
response = requests.post(url, headers=headers)
print(response.text)const options = {method: 'POST', headers: {'x-scrapeunblocker-key': '<api-key>'}};
fetch('https://api.scrapeunblocker.com/goods/aliexpress-search', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"detail": [
{
"loc": [
"<string>"
],
"msg": "<string>",
"type": "<string>"
}
]
}Authorizations
Your ScrapeUnblocker API key. Apply on every request.
Query Parameters
What to search, e.g. 'wireless earbuds' or 'phone case'.
Ordering: relevance, orders, price_asc, price_desc, newest.
How many products to collect across pages (~60 per page, max 1200).
1 <= x <= 12001-based results page to start from.
1 <= x <= 20Exit-IP country (ISO-2); also pins AliExpress price currency. Blank for a smart exit.
Response
JSON with a products array plus totals.

