---
title: "상품"
description: "아마존 상품 — 받는 파라미터와 돌아오는 값."
---

```
GET|POST /v1/amazon/product
```

**Price** $0.001 per call, plus $0.001 for each extra call it makes — at most 30 more, so $0.031 in total. `include=offers`만 유닛을 더합니다 — 오퍼 10건당 1유닛이며 30페이지가 상한입니다. 쓰지 않으면 상품 하나는 한 번의 호출입니다. [List price](https://apinoa.com/en/pricing); the rate steps down above 1,000 calls a day.

| Parameter | Type | Required | Notes |
|---|---|---|---|
| `id` | string | yes | The marketplace's own product id, as carried by a search item. |
| `include` | string |  | `offers` · `offers:5` · `offers:all` — the enumerated competing-seller offers, which are fetched separately and so opt-in. Depth counts pages of offers (10 offers each) and each page is charged; `all` walks to the end, capped at 30 pages. |
| `region` | string |  | Buyer country as ISO 3166-1 alpha-2; sets availability, shipping and price. |

```bash
curl "https://gateway.apinoa.com/v1/amazon/product?id=B01N171Q4M" -H "x-api-key: YOUR_API_KEY"
```

검색 결과 아이템의 `id`가 곧 ASIN이므로, 조회 단계 없이 검색에서 상품으로 바로 이어집니다.

## include=offers

상품 페이지는 요약("New & Used (305) from $2.07")을 `offersSummary`에 싣습니다. 나열된 목록은
선택이며 별도로 과금됩니다.

**오퍼 10건 페이지 단위로 과금되며** 최대 30페이지입니다. 리스팅의 깊이는 미리 알 수 없습니다. 어떤
ASIN은 오퍼가 한 페이지에 들어가고, 어떤 ASIN은 서른 페이지에 이릅니다.

| | 가격 |
|---|---|
| 생략 | $0.001 |
| `include=offers` | $0.002 |
| `include=offers:5` | 최대 $0.006 |
| `include=offers:all` | 최대 $0.031 (30페이지 상한) |

상한을 넘는 깊이는 거부되지 않고 잘립니다 — `offers:999`와 `offers:all`은 같은 요청입니다. 응답의
`included`는 실제로 가져온 확장을 밝힙니다. 요청했는데 거기에 없다면, 그것은 "하나도 없다"는 뜻으로
조용히 넘어간 것이 아닙니다.
