# /aliexpress/products

`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.

## How to use it

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.

## Parameters

- `access-token` (string, required)

## Request body

- `timeout` (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)

## Response

### 200 — Successful Response

- `@type` (string) (default: "AliexpressProduct")
- `id` (string, required)
- `product_url` (string, required)
- `product_title` (string, nullable)
- `image` (string, nullable)
- `images` (array) (default: [])
- `price` (number, nullable)
- `price_text` (string, nullable)
- `original_price` (number, nullable)
- `original_price_text` (string, nullable)
- `currency` (string, nullable)
- `rating` (number, nullable)
- `review_count` (integer, nullable)
- `sold_text` (string, nullable)
- `available_quantity` (integer, nullable)
- `max_purchase_quantity` (integer, nullable)
- `category_ids` (array) (default: [])
- `description_url` (string, nullable)
- `store` (object, nullable)
  - `@type` (string) (default: "AliexpressProductStore")
  - `id` (string, nullable)
  - `seller_id` (string, nullable)
  - `name` (string, nullable)
  - `url` (string, nullable)
  - `image` (string, nullable)
  - `country` (string, nullable)
  - `opened_at` (string, nullable)
  - `opened_years` (integer, nullable)
  - `positive_rate` (number, nullable)
  - `positive_count` (integer, nullable)
  - `feedback_count` (integer, nullable)
  - `level` (string, nullable)
  - `score` (integer, nullable)
  - `metrics` (array) (default: [])
    - `@type` (string) (default: "AliexpressProductStoreMetric")
    - `name` (string, required)
    - `value` (string, nullable)
- `shipping` (object, nullable)
  - `@type` (string) (default: "AliexpressProductShipping")
  - `price` (number, nullable)
  - `price_text` (string, nullable)
  - `ship_from` (string, nullable)
  - `ship_to` (string, nullable)
  - `provider` (string, nullable)
  - `delivery_min_days` (integer, nullable)
  - `delivery_max_days` (integer, nullable)
  - `delivery_date_min` (string, nullable)
  - `delivery_date_max` (string, nullable)
  - `is_free` (boolean) (default: false)
- `skus` (array) (default: [])
  - `@type` (string) (default: "AliexpressProductSku")
  - `id` (string, required)
  - `attributes` (string, nullable)
  - `properties` (array) (default: [])
    - `@type` (string) (default: "AliexpressProductSkuProperty")
    - `name` (string, required)
    - `value` (string, nullable)
  - `price` (number, nullable)
  - `price_text` (string, nullable)
  - `original_price` (number, nullable)
  - `original_price_text` (string, nullable)
  - `currency` (string, nullable)
  - `stock` (integer, nullable)
  - `is_available` (boolean) (default: false)
  - `image` (string, nullable)
- `specifications` (array) (default: [])
  - `@type` (string) (default: "AliexpressProductSpecification")
  - `name` (string, required)
  - `value` (string, nullable)

## Errors

### 422 — Validation Error

The request body did not validate

What to do: Check the fields against this schema. A URN with the wrong prefix is the most common cause.

- `detail` (array)
  - `loc` (array, required)
  - `msg` (string, required)
  - `type` (string, required)
  - `input` (any)
  - `ctx` (object)

### 408

The request ran past its time limit

What to do: 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

What to do: 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

What to do: 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

What to do: 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

What to do: Wait at least 30 seconds, then retry.

## Response envelope

Success: Array of objects (may be empty if no results)

Error: Error may coexist with partial results if it occurs mid-execution. Check X-Error header and status code.

Every response carries these headers:

- `X-Error` — Error message text (present only on error)
- `X-Request-ID` — Unique request identifier
- `X-Execution-Time` — Execution time in seconds
- `X-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.

