# Get total sales count about Taobao product(By Id)

## API Overview

- Total Sales counts
- Product name
- Price

## API URL

`GET https://api.tmapi.io/taobao/item/sales/v3`

## Request Parameters

## 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 GET 'https://api.tmapi.io/taobao/item/sales/v3?apiToken=xxxxxx'

```

## Response Example

```json

{
  "code": 200,
  "msg": "success",
  "data": {
    "item_id": "622754188886",
    "total_sold_count": "16025",
    "title": "魔幻厨房婴儿辅食模具宝宝米糕蛋糕工具蒸糕发糕钵仔糕果冻磨具",
    "price": "79.00"
  }
}

```