---
title: "搜索"
description: "速卖通搜索——接受的参数与返回的内容。"
---

```
GET|POST /v1/aliexpress/search
```

**Price** $0.001 per call. [List price](https://apinoa.com/en/pricing); the rate steps down above 1,000 calls a day.

| Parameter | Type | Required | Notes |
|---|---|---|---|
| `query` | string | yes | Keywords. Required — AliExpress keyword search cannot be asked anything without words. |
| `categoryId` | string |  | AliExpress category id; narrows the search. |
| `currency` | string |  | Presentment currency. |
| `language` | string |  | Presentment language. |
| `page` | integer ≥ 1 |  | 1-based page number. |
| `pageSize` | integer ≥ 1 |  | Results per page, 1-50. |
| `priceMax` | number ≥ 0 |  | Highest price to return, in decimal major units. |
| `priceMin` | number ≥ 0 |  | Lowest price to return, in decimal major units. |
| `region` | string |  | Buyer country (ISO 3166-1 alpha-2); sets shipping and availability. |
| `sort` | enum |  | Result ordering, in the shared vocabulary. `price_asc` `price_desc` `best_seller` |

```bash
curl "https://gateway.apinoa.com/v1/aliexpress/search?query=wireless+earbuds&priceMin=10&priceMax=40&sort=price_asc" \
  -H "x-api-key: YOUR_API_KEY"
```

速卖通支持 `currency` 与 `language`；其他平台则通过 `region` 做本地化。

**没有 `cursor`**——翻页按页码进行。**也没有 `brands`、`ratingMin`、`condition`、`freeShipping` 或
`inStock`**：速卖通搜索对这些一概没有筛选。

**没有 `best_match` 与 `newly_listed` 排序**——速卖通没有公开这两者的编码。
