# Lazada API - Get the products of a Lazada shop

## API Overview

- Shop products list
- Product details
- See More

## API URL

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

## Request Parameters

### Query

| Field | Type | Explanation | Required |
| --- | --- | --- | --- |
| shop_url | string | Shop home page link | true |
| sort | string | Optional values: `default`, `price_up`, `price_down`<br/>Default value: default | false |
| page | integer | Page number<br/>Default value: 1 | false |
| start_key | string | If you need to perform continuous paging, it's better to start specifying this parameter from the second page. This value can be obtained from the `start_key` field in the response data. | false |
| price_start | string | Filter: Minimum value of price range | false |
| price_end | string | Filter: Maximum value of price range | 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/lazada/shop/items?apiToken=xxxxxx&shop_url=https%3A%2F%2Fwww.lazada.co.th%2Fshop%2Fspider-sales%2F&sort=default&page=1'

```

## Response Example

```json

{
  "code": 200,
  "msg": "success",
  "data": {
    "page": 2,
    "page_size": 40,
    "start_key": "",
    "total_count": 1296,
    "keyword": "",
    "cat_url": "",
    "sort": "default",
    "price_start": "",
    "price_end": "",
    "items": [
      {
        "item_id": "3125183509",
        "product_url": "https://www.lazada.sg/products/-i3125183509.html",
        "title": "Nike Dri-Fit Men's Miler Short-Sleeve Running Top - Mineral",
        "img": "https://filebroker-cdn.lazada.sg/kf/S764845dfdcab4c638418efd475b2d753q.jpg",
        "category_path": [
          42062401,
          4846,
          4861
        ],
        "brand": "Nike",
        "brand_id": "25609",
        "currency": "SGD",
        "price": "45",
        "price_info": {
          "sale_price": "45",
          "origin_price": ""
        },
        "discount": null,
        "review_info": {
          "average_score": "5.0",
          "review_count": "23"
        },
        "comment_count": "23",
        "shop_info": {
          "shop_id": null,
          "shop_name": "Nike",
          "shop_url": "https://www.lazada.sg/shop/nike/",
          "seller_id": "1139637285",
          "seller_name": "Nike"
        },
        "sold_count": "143",
        "delivery_info": {
          "area_from": "Singapore"
        },
        "is_in_stock": true,
        "is_ad": false
      },
      {
        "item_id": "3167655148",
        "product_url": "https://www.lazada.sg/products/-i3167655148.html",
        "title": "Nike Women's Zoom Air Fire Shoes - Photon Dust",
        "img": "https://filebroker-cdn.lazada.sg/kf/Sff9b9378804345cbabbec425eac02fabl.jpg",
        "category_path": [
          1819,
          1766,
          1772
        ],
        "brand": "Nike",
        "brand_id": "25609",
        "currency": "SGD",
        "price": "205",
        "price_info": {
          "sale_price": "205",
          "origin_price": ""
        },
        "discount": null,
        "review_info": {
          "average_score": "",
          "review_count": "0"
        },
        "comment_count": "0",
        "shop_info": {
          "shop_id": null,
          "shop_name": "Nike",
          "shop_url": "https://www.lazada.sg/shop/nike/",
          "seller_id": "1139637285",
          "seller_name": "Nike"
        },
        "sold_count": null,
        "delivery_info": {
          "area_from": "Singapore"
        },
        "is_in_stock": true,
        "is_ad": false
      },
      {
        "item_id": "2993741979",
        "product_url": "https://www.lazada.sg/products/-i2993741979.html",
        "title": "Nike Women's Air Max INTRLK Shoes - Light Iron Ore",
        "img": "https://filebroker-cdn.lazada.sg/kf/Se0f3f66beb714131b07169ca4bf4c13d1.jpg",
        "category_path": [
          1819,
          1766,
          1772
        ],
        "brand": "Nike",
        "brand_id": "25609",
        "currency": "SGD",
        "price": "154.98",
        "price_info": {
          "sale_price": "154.98",
          "origin_price": "189"
        },
        "discount": null,
        "review_info": {
          "average_score": "5.0",
          "review_count": "3"
        },
        "comment_count": "3",
        "shop_info": {
          "shop_id": null,
          "shop_name": "Nike",
          "shop_url": "https://www.lazada.sg/shop/nike/",
          "seller_id": "1139637285",
          "seller_name": "Nike"
        },
        "sold_count": "6",
        "delivery_info": {
          "area_from": "Singapore"
        },
        "is_in_stock": true,
        "is_ad": false
      }
    ]
  }
}

```