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

## API Overview

- Shop products count
- Shop products list
- Product information
- See More

## API URL

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

## Request Parameters

### Query

| Field | Type | Explanation | Required |
| --- | --- | --- | --- |
| seller_id | integer | seller ID. It can be got from the [item detail](/docs/taobao-tmall/item-detail/get-item-detail-by-id.md) API. | true |
| page | integer | Page number<br/>Default value: 1 | false |
| sort | string | Sort order<br/>Optional values: `coefp`, `hotsell`, `oldstarts`, `bid`, `_bid`<br/>Default value: coefp | 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/v3?apiToken=xxxxxx&seller_id=2207366391032&page=1&sort=default'

```

## Response Example

```json

{
  "code": 200,
  "msg": "success",
  "data": {
    "cat": "",
    "sort": "bid",
    "page": 1,
    "page_size": 20,
    "total": 167,
    "items": [
      {
        "item_id": "708441923990",
        "title": "女童夏装套装2023新款洋气时髦短袖儿童装网红女孩夏季大童两件套",
        "main_img": "https://img.alicdn.com/i3/2270454092/O1CN018pB0wu1g6BWVUE2sQ_!!0-item_pic.jpg",
        "price": "39.00",
        "sale_price": null,
        "url": "https://item.taobao.com/item.htm?id=708441923990",
        "quantity": "",
        "month_sold": "8"
      },
      {
        "item_id": "707959038085",
        "title": "女童夏款牛仔裙套装2023夏季新款儿童裙子短袖大童洋气薄款两件套",
        "main_img": "https://img.alicdn.com/i1/2270454092/O1CN01wlpDaa1g6BWWh2ZmI_!!0-item_pic.jpg",
        "price": "49.00",
        "sale_price": null,
        "url": "https://item.taobao.com/item.htm?id=707959038085",
        "quantity": "",
        "month_sold": "10"
      },
      {
        "item_id": "672648814272",
        "title": "女童短裤夏季外穿牛仔裤2023新款洋气儿童薄款网红裤子女大童夏装",
        "main_img": "https://img.alicdn.com/i4/2270454092/O1CN01OxsKTP1g6BT6MR4N8_!!0-item_pic.jpg",
        "price": "69.00",
        "sale_price": null,
        "url": "https://item.taobao.com/item.htm?id=672648814272",
        "quantity": "",
        "month_sold": "30"
      }
    ]
  }
}

```