Tiktok product search-v1

https://api.accesstrade.vn/v1/tiktokshop_product_feeds?sort_field=units_sold&limit=20&title_keywords=Khăn giấy &title_keywords=Khăn ướt

This endpoint retrieves TikTok shop product feeds with the option to sort by units sold, limit the number of results, and filter by title keywords.

Parameters

  • sort_field (query parameter, required): Specifies the field to sort the results by.

    • commission : hoa hồng

    • units_sold: số lượng bán

    • product_sales_price: giá bán

    • commission_rate: Tỉ lệ hoa hồng

  • limit (query parameter, required): Limits the number of results to be returned. In this example, the value is 20.

  • title_keywords (query parameter, required): Filters the results by title keywords. In this example, the values are Khăn giấy and Khăn ướt.

Response

Upon a successful request, the server returns a JSON object with the following structure:

{
    "data": {
        "next_page_token": "",
        "products": [
            {
                "category_chains": [
                    {
                        "id": "",
                        "is_leaf": true,
                        "local_name": "",
                        "parent_id": ""
                    }
                ],
                "commission": {
                    "amount": "",
                    "currency": "",
                    "rate": 0
                },
                "detail_link": "",
                "has_inventory": true,
                "id": "",
                "main_image_url": "",
                "original_price": {
                    "currency": "",
                    "maximum_amount": "",
                    "minimum_amount": ""
                },
                "sale_region": "",
                "sales_price": {
                    "currency": "",
                    "maximum_amount": "",
                    "minimum_amount": ""
                },
                "shop": {
                    "name": ""
                },
                "title": "",
                "units_sold": 0
            }
        ],
        "total_count": 0
    },
    "status": true
}

The data object contains the retrieved product feeds, including the products array, which holds the details of each product. The total_count indicates the total number of products available.

Example

Tên Header

Giá trị

accept

application/json, text/plain, /

accept-language

en-US,en;q=0.6

authorization

Token xxxx (Token của user lấy tại https://pub2.accesstrade.vn/profile/api_key)

content-type

application/json

priority

u=1, i

sec-ch-ua

"Chromium";v="136", "Brave";v="136", "Not.A/Brand";v="99"

sec-ch-ua-mobile

?0

sec-ch-ua-platform

"macOS"

sec-fetch-dest

empty

sec-fetch-mode

cors

sec-fetch-site

same-site

sec-gpc

1

user-agent

Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36

Tên Tham Số (Param)

Giá Trị

Ghi Chú

sort_field

units_sold

- commission: hoa hồng- units_sold: số lượng bán- product_sales_price: giá bán- commission_rate: Tỉ lệ hoa hồng

limit

20

Số lượng kết quả trả về

title_keywords

Khăn giấy

Từ khóa tìm kiếm sản phẩm

title_keywords

Khăn ướt

Có thể gửi nhiều title_keywords

page_token

Token của trang tiếp theo, lấy từ trường "next_page_token" trong response

Last updated

Was this helpful?