cURL
curl --request GET \
--url 'https://api.keyapi.ai/v1/youtube/get_channel_id?channel_name=LinusTechTips' \
--header 'Authorization: Bearer <YOUR_API_KEY>'import requests
response = requests.get(
'https://api.keyapi.ai/v1/youtube/get_channel_id',
params={"channel_name": "LinusTechTips"},
headers={'Authorization': 'Bearer <YOUR_API_KEY>'}
)
print(response.json())const params = new URLSearchParams({"channel_name": "LinusTechTips"});
const response = await fetch(`https://api.keyapi.ai/v1/youtube/get_channel_id?${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",
"channel_name": "LinusTechTips"
},
"requestId": "bef65a1d-ff85-493a-a23f-5f7cd4c57f14"
}{
"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 频道
获取频道ID
通过频道名称获取频道ID
GET
/
v1
/
youtube
/
get_channel_id
cURL
curl --request GET \
--url 'https://api.keyapi.ai/v1/youtube/get_channel_id?channel_name=LinusTechTips' \
--header 'Authorization: Bearer <YOUR_API_KEY>'import requests
response = requests.get(
'https://api.keyapi.ai/v1/youtube/get_channel_id',
params={"channel_name": "LinusTechTips"},
headers={'Authorization': 'Bearer <YOUR_API_KEY>'}
)
print(response.json())const params = new URLSearchParams({"channel_name": "LinusTechTips"});
const response = await fetch(`https://api.keyapi.ai/v1/youtube/get_channel_id?${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",
"channel_name": "LinusTechTips"
},
"requestId": "bef65a1d-ff85-493a-a23f-5f7cd4c57f14"
}{
"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"
}⌘I

