跳转到主要内容
GET
/
v1
/
youtube
/
search_channel
cURL
curl --request GET \
  --url 'https://api.keyapi.ai/v1/youtube/search_channel?channel_id=UCXuqSBlHAE6Xw-yeJA0Tunw&search_query=AMD&language_code=en&country_code=US' \
  --header 'Authorization: Bearer <YOUR_API_KEY>'
{
  "code": 0,
  "message": "success",
  "data": {
    "channel_id": "UCXuqSBlHAE6Xw-yeJA0Tunw",
    "number_of_videos": 0,
    "query": "AMD",
    "country": "US",
    "lang": "en",
    "timezone": "America/New_York",
    "continuation_token": null,
    "videos": []
  },
  "requestId": "4c1bd52a-350a-48fc-a3b8-ba3709759fdb"
}
🪙3 credits每次请求

Copy for AI

🤖 让 AI 帮你写调用代码

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

授权

Authorization
string
header
必填

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

查询参数

channel_id
string

频道ID

示例:

"UCXuqSBlHAE6Xw-yeJA0Tunw"

search_query
string
必填

搜索关键字

示例:

"AMD"

language_code
string
默认值:en

语言代码,默认为en

country_code
string
默认值:US

国家代码,默认为US

continuation_token
string

用于继续获取搜索结果的令牌。默认为None。

响应

请求成功

The response is of type object.