# Amazon API - Get Amazon product SKU prices

## API Overview

- Batch retrieve Amazon product SKU price information

## API URL

`POST https://api.tmapi.io/amazon/item_sku_prices`

## Request Parameters

### Body

> Content-Type: application/json

| Field | Type | Explanation | Required |
| --- | --- | --- | --- |
| url | string | Product URL for which to retrieve SKU prices | true |
| sku_list | array | List of SKU IDs to retrieve prices for. SKU IDs must belong to the product specified by `url`. Maximum 10 SKU IDs per request | true |
| currency |  |  | false |

## Security Auth

> Please go to [Console-Account Center](https://console.tmapi.io/account/center) to get your apiToken.

> Add your apiToken to the request parameters. Please refer to the examples below.

## Request Example

```bash

curl --request POST 'https://api.tmapi.io/amazon/item_sku_prices?apiToken=xxxxxx' \
+  --header 'Content-Type: application/json' \
+  --data-raw '{
  "url": "",
  "sku_list": ""
}'

```

## Response Example

```json

{
  "code": 200,
  "msg": "success",
  "data": {
    "currency": "JPY",
    "prices": {
      "B0BPNRQZ4B": {
        "asin": "B0BPNRQZ4B",
        "price": "1888"
      },
      "B0BPNR3RBN": {
        "asin": "B0BPNR3RBN",
        "price": "1888"
      },
      "B0BPNTM39S": {
        "asin": "B0BPNTM39S",
        "price": "1888"
      },
      "B0BPNSV5D8": {
        "asin": "B0BPNSV5D8",
        "price": "2188"
      },
      "B0BPNR8CNM": {
        "asin": "B0BPNR8CNM",
        "price": "1888"
      },
      "B0BPNSR8VR": {
        "asin": "B0BPNSR8VR",
        "price": "2188"
      },
      "B0BPNQ1L8P": {
        "asin": "B0BPNQ1L8P",
        "price": "1888"
      },
      "B0BPNS7G24": {
        "asin": "B0BPNS7G24",
        "price": "2188"
      },
      "B0BPNQHV7X": {
        "asin": "B0BPNQHV7X",
        "price": "1888"
      },
      "B0BPNVJMPZ": {
        "asin": "B0BPNVJMPZ",
        "price": "2188"
      }
    }
  },
  "extra": ""
}

```