Apinoa Docs

Browse

AliExpress browse — accepted parameters and what comes back.

查看原始 .mdx

本页尚未翻译,以英文显示。代码示例在各语言版本中完全相同。

GET|POST /v1/aliexpress/browse

Price $0.001 per call. List price; the rate steps down above 1,000 calls a day.

ParameterTypeRequiredNotes
categoryIdstringyesAliExpress category id to list. Required — this is what is being browsed.
currencystringPresentment currency.
languagestringPresentment language.
pageinteger ≥ 11-based page number.
pageSizeinteger ≥ 1Results per page, 1-50.
priceMaxnumber ≥ 0Highest price to return, in decimal major units.
priceMinnumber ≥ 0Lowest price to return, in decimal major units.
regionstringBuyer country (ISO 3166-1 alpha-2); sets shipping and availability.
sortenumResult ordering, in the shared vocabulary. price_asc price_desc best_seller

Listing a category with no keyword. Same filters as search, minus the words.

curl "https://gateway.apinoa.com/v1/aliexpress/browse?categoryId=200000345&priceMin=10&priceMax=20" \
  -H "x-api-key: YOUR_API_KEY"

No query — a query here is a 400, not a silent drop. Use search when you have words.

An unknown category id returns an empty items, not a 404. AliExpress does not distinguish an unknown category from an empty one. (eBay's browse does 404 on a bad id — the marketplaces differ here.)

A response carries no query key, and otherwise looks exactly like a search response.