Search Etsy listings, pull one listing with its variations and reviews, open a shop's profile and catalogue, and page through a shop's reviews. 5 endpoints, 2 credits each, structured JSON.
Data & analysis
Scavio Aliexpress
Try itSearch AliExpress, browse a category, pull one product with every SKU variant, read translated buyer reviews, and open a seller's storefront and catalogue. 6 endpoints, 1 credit each, structured JSON.
What it does
Search AliExpress, browse a category, pull one product with every SKU variant, read translated buyer reviews, and open a seller's storefront and catalogue. 6 endpoints, 1 credit each, structured JSON.
The skill document
AliExpress via Scavio
Search AliExpress products, browse a category, pull one product in full with all its SKU variants, read translated customer reviews, and open a seller's storefront and catalogue. All endpoints return structured JSON.
When to trigger
Use this skill when the user asks to:
- Search AliExpress for a product with price, rating, units-sold and free-shipping filters
- Browse a whole AliExpress category and sort by best sellers (units ordered)
- Pull one product in full - current and original price, discount, every SKU variant group, the full image gallery, and the seller
- Read translated buyer reviews with star rating, buyer country, per-SKU variant and photos
- Open a seller's profile (followers, rating, catalogue size) and page through their catalogue
- Do price comparison, dropshipping research, or product-market research on AliExpress
Setup
Get a free API key at scavio.dev (50 free credits to get started, no card required):
export SCAVIO_API_KEY=sk_live_your_key
Every request is a POST with a JSON body and:
Authorization: Bearer $SCAVIO_API_KEY
Endpoints
Base URL: https://api.scavio.dev. Every AliExpress endpoint costs 1 credit.
| Endpoint | Credits | What it returns |
|---|---|---|
POST /api/v1/aliexpress/search | 1 | Products for a query: price with discounts, rating, units sold, delivery estimate, ship-from country, images, plus related search terms |
POST /api/v1/aliexpress/category | 1 | Products within a category id, same product shape and filters as search. Sort by orders for the category's best sellers |
POST /api/v1/aliexpress/reviews | 1 | Customer reviews: text with English translation, star rating, buyer country, per-SKU variant, photos, votes, and the product's full rating breakdown. Up to 50 per call |
POST /api/v1/aliexpress/product | 1 | One product in full: title, current/original price, discount, rating, review count, every SKU variant group with options, full image gallery, free-shipping flag, seller (store name, id, positive-feedback rate, followers). Typically responds in 20-60 seconds |
POST /api/v1/aliexpress/seller | 1 | A storefront profile: name, store id, follower count, plus rating, opening date and catalogue size when published. Typically responds in 20-60 seconds |
POST /api/v1/aliexpress/seller-products | 1 | A seller's catalogue, 30 items per page, with total_products reporting the full size. Typically responds in 20-60 seconds |
Two facts that decide how you call this
search and category share one product shape. The same filters (sort_by, min_price, max_price, ship_from, free_shipping, ship_to, currency) apply to both. Use search for a keyword, category for a category id.
ship_to changes what appears, not just prices. The 2-letter destination country changes prices, VAT and delivery estimates - and which items appear at all, because AliExpress filters by shippability. Send it explicitly for a stable result.
When you set min_price/max_price, total_results comes back null. AliExpress reports a broadened match count under a price filter, so the total is suppressed rather than shown wrong. The products array is still correct.
Parameters
Search (/search)
| Parameter | Type | Default | Description |
|---|---|---|---|
query | string | required | Search terms (1-500 chars) |
category_id | string | -- | Restrict the search to one category id |
page | integer | -- | 1-based, 60 items per full page |
sort_by | string | best_match | best_match, orders (units sold), price_low, price_high |
min_price / max_price | number | -- | Price filter, in the selected currency |
ship_from | string | -- | Only items shipped from this 2-letter country (e.g. US, CN) |
free_shipping | boolean | -- | Only items with free shipping |
ship_to | string | US | 2-letter ISO destination country |
currency | string | USD | 3-letter ISO currency |
Category (/category)
Same fields as search, but category_id is required and there is no query.
Reviews (/reviews)
| Parameter | Type | Default | Description |
|---|---|---|---|
product_id | string | required | Product id or product URL. Both id spaces are accepted (canonical 1005..., or the 3256... alias search pages emit) |
page | integer | -- | 1-based reviews page |
page_size | integer | 20 | Reviews per page, 1-50 |
filter | string | all | all, image (with photos), local (buyer's country), additional (follow-up reviews), with_personal |
Product (/product)
| Parameter | Type | Default | Description |
|---|---|---|---|
product_id | string | required | Product id or product URL |
ship_to | string | US | 2-letter ISO destination country |
currency | string | USD | 3-letter ISO currency |
Seller (/seller) and Seller Products (/seller-products)
| Parameter | Type | Default | Description |
|---|---|---|---|
store_id | string | required | Store id, or any storefront URL containing /store/. Every product response returns its seller's store_id |
page | integer | -- | (seller-products only) 1-based, 30 items per page |
Examples
import requests
BASE = "https://api.scavio.dev"
# Your key from https://scavio.dev. Load it from your environment or secret
# store in real code - keep it out of source control.
API_KEY = "sk_your_key_here"
HEADERS = {"Authorization": f"Bearer {API_KEY}"}
# 1. Search, best sellers first, shipped to the UK, priced in GBP
found = requests.post(f"{BASE}/api/v1/aliexpress/search", headers=HEADERS,
json={"query": "usb c hub", "sort_by": "orders", "max_price": 40,
"free_shipping": True, "ship_to": "GB", "currency": "GBP"}).json()
row = found["data"]["products"][0]
product_id = row["product_id"]
# 2. One product in full - price, every SKU variant group, the seller
product = requests.post(f"{BASE}/api/v1/aliexpress/product", headers=HEADERS,
json={"product_id": product_id, "ship_to": "GB", "currency": "GBP"}).json()
store_id = product["data"]["seller"]["store_id"]
# 3. Reviews with photos only
reviews = requests.post(f"{BASE}/api/v1/aliexpress/reviews", headers=HEADERS,
json={"product_id": product_id, "filter": "image", "page_size": 50}).json()
# 4. The seller's catalogue
catalogue = requests.post(f"{BASE}/api/v1/aliexpress/seller-products", headers=HEADERS,
json={"store_id": store_id, "page": 1}).json()
curl:
curl -s https://api.scavio.dev/api/v1/aliexpress/search \
-H "Authorization: Bearer $SCAVIO_API_KEY" \
-H "Content-Type: application/json" \
-d '{"query":"mechanical keyboard","sort_by":"orders","ship_to":"US","currency":"USD"}'
Response shape
Every response uses the envelope { data, response_time, credits_used, credits_remaining }. data carries the product/review/seller payload described in the table above (products[], products_count, total_results, reviews[], seller, and so on).
Guardrails
- Every call is 1 credit, including one that comes back empty.
- Send
ship_toandcurrencyexplicitly - they change prices, delivery estimates and which items appear at all. - Under a
min_price/max_pricefilter,total_resultsisnullby design; use theproductsarray, not the total. - The
product,sellerandseller-productsendpoints typically take 20-60 seconds. Size your client timeout accordingly (120s is safe). - Never invent a
sort_byorfiltervalue; unrecognised values are rejected before the request runs. - Never fabricate prices, ratings, seller details or review text. Only return what the API returned.
- Review text is written by real buyers. Summarise; do not build profiles of individuals.
Failure handling
400means an invalid or missing parameter. Fix and retry.401means the API key is invalid or missing. CheckSCAVIO_API_KEY.404means the product, seller or category could not be resolved.429means rate or usage limit exceeded. Wait before retrying. See rate limits.502/503mean the source is temporarily unavailable - wait a few seconds and retry, up to a few times.- An empty result set is usually the filters - widen the price range, drop
free_shipping, or changeship_from. - If
SCAVIO_API_KEYis not set, prompt the user to export it before continuing.
Related skills
Extract complete product information from any e-commerce product page. Returns name, price, currency, brand, images, description, SKU/ASIN/EAN/UPC/GTIN/MPN i...
Search Amazon, read full product detail by ASIN, and list every seller offer on an ASIN with the buy-box winner. Clean normalized JSON with price, rating, review count, availability, shipping and sellers. 3 endpoints, all 1 credit, 22 marketplaces.
Search TikTok Shop products with exact prices, read product details, reviews, the category tree, category and seller catalogs, and resolve any TikTok Shop link to an id. 8 endpoints, all 1 credit.
Live Amazon marketplace data from Apiguru (a paid third-party API, 3 free calls a day) - product details, prices, reviews, keyword search, best-sellers, deals, offers and stock, seller profiles, across 20 Amazon marketplaces. Use only when the user asks for Amazon data by ASIN, Amazon URL, product, seller or keyword, or for Amazon price/stock/review monitoring. Not for other stores or general shopping advice. Never pays on its own; ask before any billable call.
Extract product search results from TikTok Shop by keyword and country region — returns product id, title, price, currency, seller, shop, rating, review count, sold count, images, SKU variants, brand, and product URL. Use when user mentions TikTok Shop, tiktok shop scraper, tiktok shop search, tikto