POST /api/aliexpress/products
Price: 5 credits
Get a single AliExpress product by id or product URL. Returns title, images, sale and original price, rating, review count, sold summary, available quantity, category ids, description URL, the seller store (name, country, opening date, positive feedback rate and count, seller level and score, service ratings), the shipping option for the requested locale (price, provider, delivery window), every SKU variant with its readable properties, price, stock, availability and image, and the full specification list.
Fetch one AliExpress product by its numeric id (or a product page URL). Returns id, product_url, product_title, image+images, price/price_text, original_price, currency, rating, review_count, sold_text, available_quantity, category_ids, description_url, nested store (with level, score, positive_rate/positive_count and metrics), shipping, skus (with readable properties and is_available) and specifications. Prices, shipping and availability follow the requested locale and currency. store.id is locale-specific — the same shop answers a different id per language, so match shops across languages on store.seller_id, which is stable.
access-token string requiredtimeout integer — Max scrapping execution timeout (in seconds) (default: 300; min: 20; max: 1500)language string — Content language. On endpoints without a separate country field it also selects the shopping region, which drives availability, shipping options and delivery estimates (default: "en_US"; one of: "ar_MA", "de_DE", "en_US", "es_ES", "fr_FR", "in_ID", "it_IT", "iw_IL", "ja_JP", "ko_KR", "nl_NL", "pl_PL", "pt_BR", "ru_RU", "th_TH", "tr_TR", "vi_VN")currency string — Currency the prices are returned in (default: "USD"; one of: "USD", "EUR", "GBP", "CAD", "AUD", "RUB", "BRL", "CLP", "JPY", "KRW", "CHF", "SEK", "PLN", "ILS", "NOK", "DKK", "NZD", "MXN", "COP", "TRY", "THB", "SGD", "MYR", "PHP", "IDR", "INR", "VND", "HKD", "TWD", "AED", "SAR", "CZK", "HUF", "RON", "BGN", "UAH", "KZT", "ARS", "EGP", "ZAR", "CNY", "PEN")product string required — Product id or product page URL (examples: "3256810343908999", "https://www.aliexpress.com/item/1005010530223751.html"; minLength: 1)@type string (default: "AliexpressProduct")id string requiredproduct_url string requiredproduct_title string nullableimage string nullableimages array (default: [])price number nullableprice_text string nullableoriginal_price number nullableoriginal_price_text string nullablecurrency string nullablerating number nullablereview_count integer nullablesold_text string nullableavailable_quantity integer nullablemax_purchase_quantity integer nullablecategory_ids array (default: [])description_url string nullablestore object nullable@type string (default: "AliexpressProductStore")id string nullableseller_id string nullablename string nullableurl string nullableimage string nullablecountry string nullableopened_at string nullableopened_years integer nullablepositive_rate number nullablepositive_count integer nullablefeedback_count integer nullablelevel string nullablescore integer nullablemetrics array (default: [])@type string (default: "AliexpressProductStoreMetric")name string requiredvalue string nullableshipping object nullable@type string (default: "AliexpressProductShipping")price number nullableprice_text string nullableship_from string nullableship_to string nullableprovider string nullabledelivery_min_days integer nullabledelivery_max_days integer nullabledelivery_date_min string nullabledelivery_date_max string nullableis_free boolean (default: false)skus array (default: [])@type string (default: "AliexpressProductSku")id string requiredattributes string nullableproperties array (default: [])@type string (default: "AliexpressProductSkuProperty")name string requiredvalue string nullableprice number nullableprice_text string nullableoriginal_price number nullableoriginal_price_text string nullablecurrency string nullablestock integer nullableis_available boolean (default: false)image string nullablespecifications array (default: [])@type string (default: "AliexpressProductSpecification")name string requiredvalue string nullable422 — The request body did not validate Check the fields against this schema. A URN with the wrong prefix is the most common cause.408 — The request ran past its time limit Raise `timeout` in the request body, up to the maximum this endpoint documents. Lowering `count` or turning off the `with_*` flags also helps, because less work finishes sooner.412 — Product not found or no longer listed on AliExpress Retrying will not help: either the entity does not exist, or the input points at a different one.429 — Too many requests: a rate limit or a usage window is exhausted When the response carries an X-Retry-After header, wait that many seconds and retry: the same number is in the body as `detail.retry_after`, and the limit clears once that window passes. The message in the body names the limit that was hit.500 — Something broke on our side Retrying will not help. If it keeps happening, send us the X-Request-ID from the response headers.529 — Rate limit reached, or the endpoint is overloaded Wait at least 30 seconds, then retry.X-Error — Error message text (present only on error)X-Request-ID — Unique request identifierX-Execution-Time — Execution time in secondsX-Result-Count — How many records the body carries. 0 means an empty result, which is a normal answer and not by itself an error. A non-zero count can come back together with X-Error when the failure happened partway through — read this header and X-Error independently.X-Total-Available-Results — How many records exist for this query, when the endpoint can say. On a `dry_run` request this is the answer and the body is empty. It saturates: the endpoint's documented maximum means 'at least that many', any smaller number is exact.X-Warning — Present when the request body carried keys this endpoint does not document. They were ignored, so any filter you meant to apply through them did not apply. Check the spelling against this schema and retry.X-Retry-After — Seconds to wait before retrying. Present only on 429.