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

## API Overview

- Shop products count
- Shop products list
- See More

## API URL

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

## Request Parameters

### Query

| Field | Type | Explanation | Required |
| --- | --- | --- | --- |
| shop_url | string | The shop home page link. It can also be obtained 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 |

## 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/v4?apiToken=xxxxxx&shop_url=&page=1'

```

## Response Example

```json

{
  "code": 200,
  "msg": "success",
  "data": {
    "shop_id": 155331286,
    "seller_id": 2562867291,
    "page": 1,
    "page_size": 20,
    "total": 14,
    "sort": "default",
    "items": [
      {
        "item_id": "601502437456",
        "title": "德国铝合金工具箱大号拉杆式航空箱多功能带轮子木工箱子定做",
        "main_img": "https://img.alicdn.com/i3/2562867291/O1CN01WFE8x223jKbAGSiew_!!2562867291.jpg",
        "price": "348.00",
        "sale_price": "348.00",
        "url": "https://item.taobao.com/item.htm?id=601502437456",
        "sales_count": ""
      },
      {
        "item_id": "647560675962",
        "title": "台式电脑拉杆收纳箱子行李箱防震铝金主机显示屏外设运输航空便携",
        "main_img": "https://img.alicdn.com/i2/2562867291/O1CN01dfGofX23jKOd3TjJj_!!2562867291.jpg",
        "price": "239.00",
        "sale_price": "239.00",
        "url": "https://item.taobao.com/item.htm?id=647560675962",
        "sales_count": ""
      },
      {
        "item_id": "610499613595",
        "title": "邮费专拍链接",
        "main_img": "https://img.alicdn.com/i4/2562867291/O1CN014JnH7j23jKIMt7EhU_!!2562867291.jpg",
        "price": "1.00",
        "sale_price": "1.00",
        "url": "https://item.taobao.com/item.htm?id=610499613595",
        "sales_count": ""
      }
    ]
  }
}

```