cURL
curl --request GET \
--url 'https://api.keyapi.ai/v1/youtube/get_channel_url?channel_id=UCeu6U67OzJhV1KwBansH3Dg' \
--header 'Authorization: Bearer <YOUR_API_KEY>'import requests
response = requests.get(
'https://api.keyapi.ai/v1/youtube/get_channel_url',
params={"channel_id": "UCeu6U67OzJhV1KwBansH3Dg"},
headers={'Authorization': 'Bearer <YOUR_API_KEY>'}
)
print(response.json())const params = new URLSearchParams({"channel_id": "UCeu6U67OzJhV1KwBansH3Dg"});
const response = await fetch(`https://api.keyapi.ai/v1/youtube/get_channel_url?${params}`, {
method: 'GET',
headers: { 'Authorization': 'Bearer <YOUR_API_KEY>' }
});
const data = await response.json();
console.log(data);{
"code": 0,
"message": "success",
"data": {
"channel_id": "UCeu6U67OzJhV1KwBansH3Dg",
"channel_url": "https://www.youtube.com/channel/UCeu6U67OzJhV1KwBansH3Dg",
"vanity_url": "http://www.youtube.com/@CozyCraftYT"
},
"requestId": "2e5cb962-218f-4eb1-a547-ba1be49a8a4e"
}{
"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获取频道URL
从YouTube频道ID转换获取频道Handle (@用户名) 与 get_channel_id 接口互为反向操作
使用场景: 当你有频道ID但需要获取@用户名格式的URL时 需要展示用户友好的频道链接时
GET
/
v1
/
youtube
/
get_channel_url
cURL
curl --request GET \
--url 'https://api.keyapi.ai/v1/youtube/get_channel_url?channel_id=UCeu6U67OzJhV1KwBansH3Dg' \
--header 'Authorization: Bearer <YOUR_API_KEY>'import requests
response = requests.get(
'https://api.keyapi.ai/v1/youtube/get_channel_url',
params={"channel_id": "UCeu6U67OzJhV1KwBansH3Dg"},
headers={'Authorization': 'Bearer <YOUR_API_KEY>'}
)
print(response.json())const params = new URLSearchParams({"channel_id": "UCeu6U67OzJhV1KwBansH3Dg"});
const response = await fetch(`https://api.keyapi.ai/v1/youtube/get_channel_url?${params}`, {
method: 'GET',
headers: { 'Authorization': 'Bearer <YOUR_API_KEY>' }
});
const data = await response.json();
console.log(data);{
"code": 0,
"message": "success",
"data": {
"channel_id": "UCeu6U67OzJhV1KwBansH3Dg",
"channel_url": "https://www.youtube.com/channel/UCeu6U67OzJhV1KwBansH3Dg",
"vanity_url": "http://www.youtube.com/@CozyCraftYT"
},
"requestId": "2e5cb962-218f-4eb1-a547-ba1be49a8a4e"
}{
"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 助手生成接口调用代码。
⌘I

