跳转到主要内容
GET
/
v1
/
tiktok
/
insights
/
products
cURL
curl --request GET \
  --url 'https://api.keyapi.ai/v1/tiktok/insights/products?search_keyword=FALSE&page=1&limit=20&time_scope=1&region=all_regions' \
  --header 'Authorization: Bearer <YOUR_API_KEY>'
{
  "code": 0,
  "message": "success",
  "data": {
    "list": [
      {
        "comment": 1029,
        "cost": 48200,
        "cover_url": null,
        "cpa": 4.92,
        "ctr": 1.83,
        "cvr": 5.71,
        "ecom_type": "l3",
        "first_ecom_category": {
          "id": "601450",
          "label": "category_601450",
          "value": "Beauty & Personal Care"
        },
        "impression": 20000000,
        "like": 48452,
        "play_six_rate": 8.77,
        "post": 11500,
        "post_change": 0.27,
        "second_ecom_category": {
          "id": "848648",
          "label": "category_848648",
          "parent_id": "601450",
          "value": "Makeup & Perfume"
        },
        "share": 873,
        "third_ecom_category": {
          "id": "601583",
          "label": "category_601583",
          "parent_id": "848648",
          "value": "Perfume"
        },
        "url_title": "Perfume"
      }
    ],
    "pagination": {
      "page": 1,
      "size": 1,
      "total": 500,
      "has_more": true
    }
  },
  "requestId": "d8a309f6-e55c-4569-b17e-a148368362a4"
}
🪙2 credits每次请求

Copy for AI

🤖 让 AI 帮你写调用代码

点击按钮复制一段结构化提示词,可直接交给 ChatGPT、Claude 或其他 AI 助手生成接口调用代码。

授权

Authorization
string
header
必填

接口鉴权凭证。请在请求 Header 中传入 Authorization: Bearer <YOUR_API_KEY>。 可在 Dashboard 获取你的 API Key。

查询参数

search_keyword
string
默认值:FALSE

搜索关键词;传 FALSE 字符串表示不搜索,传非空字符串时按关键词搜索。

示例:

"FALSE"

page
string
默认值:1

分页页码,用于指定查询结果的目标页。

示例:

"1"

limit
string
默认值:20

每页返回数量,取值范围 1 到 20;超过最大值时会按 20 处理。

示例:

"20"

time_scope
string
默认值:1

每页返回数量,取值范围 1 到 20;超过最大值时会按 20 处理。

示例:

"1"

region
string
默认值:all_regions

国家/地区代码,例如 US。

示例:

"all_regions"

ecom_category_id
string

商品三级类目筛选条件,用于限定查询的商品类目范围。

响应

请求成功

The response is of type object.