# Taobao API - Get the products of a Taobao shop(By shop ID)

## API Overview

- Shop products count
- Shop products list
- See More

## API URL

`GET https://api.tmapi.io/taobao/shop/items`

## Request Parameters

### Query

| Field | Type | Explanation | Required |
| --- | --- | --- | --- |
| shop_id | integer | Shop ID | true |
| page | integer | Page number<br/>Default value: 1 | false |
| sort | string | Optional values: `default`, `price_up`, `price_down`, `sales`, `time_up`<br/>Default value: sales | 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 GET 'https://api.tmapi.io/taobao/shop/items?apiToken=xxxxxx&shop_id=241587143&page=1&sort=sales'

```

## Response Example

```json

{
  "code": 200,
  "msg": "success",
  "data": {
    "shop_id": 62847409,
    "seller_id": 520557274,
    "page": 1,
    "page_size": 10,
    "total": 783,
    "max_page": 157,
    "sort": "default",
    "shop_main_catid": "50012029",
    "is_tmall": true,
    "items": [
      {
        "item_id": 736217489020,
        "title": "New Balance NB官方男女情侣秋冬运动保暖鸭绒面包羽绒服AWJ33324",
        "main_img": "http://g.search2.alicdn.com/img/bao/uploaded/i4/i2/520557274/O1CN01Xflsd923bXsyzWzNp_!!0-item_pic.jpg",
        "price": "1499.00",
        "url": "https://detail.tmall.com/item.htm?id=736217489020",
        "sale_price": "1499.00",
        "sales_count": "1000+人付款",
        "shipping_fee": "0.00"
      },
      {
        "item_id": 625147387244,
        "title": "New Balance NB官方男女情侣百搭美式复古运动休闲慢跑鞋ML2002RA",
        "main_img": "http://g.search2.alicdn.com/img/bao/uploaded/i4/i2/520557274/O1CN01K11s0m23bXt1GDILS_!!0-item_pic.jpg",
        "price": "1099.00",
        "url": "https://detail.tmall.com/item.htm?id=625147387244",
        "sale_price": "1099.00",
        "sales_count": "4万+人付款",
        "shipping_fee": "0.00"
      },
      {
        "item_id": 736100417588,
        "title": "New Balance NB官方新款秋冬男女运动休闲立领鸭绒羽绒服AMJ33329",
        "main_img": "http://g.search2.alicdn.com/img/bao/uploaded/i4/i3/520557274/O1CN0148J8qO23bXsyzXzmJ_!!0-item_pic.jpg",
        "price": "1499.00",
        "url": "https://detail.tmall.com/item.htm?id=736100417588",
        "sale_price": "1499.00",
        "sales_count": "1000+人付款",
        "shipping_fee": "0.00"
      }
    ]
  }
}

```