---
title: "Image search"
description: "AliExpress image search — accepted parameters and what comes back."
---

```
GET|POST /v1/aliexpress/image-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 |
|---|---|---|---|
| `image` | object | yes | {contentType, data} with base64-encoded image bytes. |
| `currency` | string |  | Presentment currency. |
| `language` | string |  | Presentment language. |
| `region` | string |  | Buyer country (ISO 3166-1 alpha-2). |

```bash
curl -X POST https://gateway.apinoa.com/v1/aliexpress/image-search \
  -H "content-type: application/json" -H "x-api-key: YOUR_API_KEY" \
  -d '{"image": {"contentType": "image/jpeg", "data": "<base64>"}}'
```

No `query`: AliExpress image search takes a picture and nothing else. No paging — it always returns
the first page.
