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>'import requests
response = requests.get(
'https://api.keyapi.ai/v1/youtube/search_channel',
params={"channel_id": "UCXuqSBlHAE6Xw-yeJA0Tunw", "search_query": "AMD", "language_code": "en", "country_code": "US"},
headers={'Authorization': 'Bearer <YOUR_API_KEY>'}
)
print(response.json())const params = new URLSearchParams({"channel_id": "UCXuqSBlHAE6Xw-yeJA0Tunw", "search_query": "AMD", "language_code": "en", "country_code": "US"});
const response = await fetch(`https://api.keyapi.ai/v1/youtube/search_channel?${params}`, {
method: 'GET',
headers: { 'Authorization': 'Bearer <YOUR_API_KEY>' }
});
const data = await response.json();
console.log(data);{
"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"
}{
"code": 400,
"data": null,
"message": "Missing required parameter: handle"
}{
"code": 401,
"data": null,
"message": "apiKey is null"
}{
"code": 402,
"data": null,
"message": "apiKey quota is not enough"
}{
"code": 429,
"data": null,
"message": "qps limit exceeded"
}{
"code": 500,
"data": null,
"message": "Internal server error"
}YouTube 频道
搜索频道
搜索频道。
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>'import requests
response = requests.get(
'https://api.keyapi.ai/v1/youtube/search_channel',
params={"channel_id": "UCXuqSBlHAE6Xw-yeJA0Tunw", "search_query": "AMD", "language_code": "en", "country_code": "US"},
headers={'Authorization': 'Bearer <YOUR_API_KEY>'}
)
print(response.json())const params = new URLSearchParams({"channel_id": "UCXuqSBlHAE6Xw-yeJA0Tunw", "search_query": "AMD", "language_code": "en", "country_code": "US"});
const response = await fetch(`https://api.keyapi.ai/v1/youtube/search_channel?${params}`, {
method: 'GET',
headers: { 'Authorization': 'Bearer <YOUR_API_KEY>' }
});
const data = await response.json();
console.log(data);{
"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"
}{
"code": 400,
"data": null,
"message": "Missing required parameter: handle"
}{
"code": 401,
"data": null,
"message": "apiKey is null"
}{
"code": 402,
"data": null,
"message": "apiKey quota is not enough"
}{
"code": 429,
"data": null,
"message": "qps limit exceeded"
}{
"code": 500,
"data": null,
"message": "Internal server error"
}🪙3 credits每次请求
Copy for AI
🤖 让 AI 帮你写调用代码
点击按钮复制一段结构化提示词,可直接交给 ChatGPT、Claude 或其他 AI 助手生成接口调用代码。
授权
查询参数
频道ID
示例:
"UCXuqSBlHAE6Xw-yeJA0Tunw"
搜索关键字
示例:
"AMD"
语言代码,默认为en
国家代码,默认为US
用于继续获取搜索结果的令牌。默认为None。
响应
请求成功
The response is of type object.
⌘I

