跳转到主要内容
GET
/
v1
/
tiktok
/
insights
/
keyword
cURL
curl --request GET \
  --url 'https://api.keyapi.ai/v1/tiktok/insights/keyword?search_keyword=FALSE&page=1&limit=20&period=7&region=nothing' \
  --header 'Authorization: Bearer <YOUR_API_KEY>'
{
  "code": 0,
  "message": "success",
  "data": {
    "keyword_list": [
      {
        "comment": 770,
        "cost": 172000,
        "cpa": 0.03,
        "ctr": 9.16,
        "cvr": 100,
        "impression": 57000000,
        "keyword": "play now",
        "like": 84986,
        "play_six_rate": 29.47,
        "post": 39300,
        "post_change": 69.7,
        "share": 580,
        "video_list": [
          "7572396491294149896",
          "7584805700031810817",
          "7586921072524545298",
          "7587647314320215314",
          "7597467387859979537"
        ]
      }
    ],
    "pagination": {
      "page": 1,
      "size": 1,
      "total": 500,
      "has_more": true
    }
  },
  "requestId": "314d0c7a-22b6-434b-883a-040485d23331"
}
🪙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"

period
string
默认值:7

查询时间范围,可选值:7=近 7 天,30=近 30 天,120=近 120 天。

示例:

"7"

region
string
默认值:nothing

国家/地区代码;默认值 nothing 表示不选择任何地区。

示例:

"nothing"

industry
string

行业 ID;默认值 nothing 表示不选择行业,可从热门趋势的行业分类映射中选择。

objective
string

投放目标,可选;默认值 nothing 表示不选择投放目标。Traffic=1,App installations=2,Conversions=3,Video views=4,Reach=5,Lead generation=8,Product sales=14。

keyword_type
string

关键词类型;nothing 表示不选择关键词类型。Selling point=1,Pain point=2,Target user=3,Call to action=4,Others=5,Product=6。

响应

请求成功

The response is of type object.