---
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` 정렬은 없습니다** — 알리익스프레스가 어느 쪽에 대해서도 코드를 공개하지
않습니다.
