Skip to main content
GET
/
v1
/
youtube
/
get_channel_id_from_url
cURL
curl --request GET \
  --url 'https://api.keyapi.ai/v1/youtube/get_channel_id_from_url?channel_url=https%3A%2F%2Fwww.youtube.com%2F%40CozyCraftYT' \
  --header 'Authorization: Bearer <YOUR_API_KEY>'
import requests

response = requests.get(
'https://api.keyapi.ai/v1/youtube/get_channel_id_from_url',
params={"channel_url": "https://www.youtube.com/@CozyCraftYT"},
headers={'Authorization': 'Bearer <YOUR_API_KEY>'}
)
print(response.json())
const params = new URLSearchParams({"channel_url": "https://www.youtube.com/@CozyCraftYT"});

const response = await fetch(`https://api.keyapi.ai/v1/youtube/get_channel_id_from_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"
  },
  "requestId": "91bf1793-f8ee-49a9-bebe-7c2fe1808076"
}
{
"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 creditsper request

Copy for AI

🤖 Why Code When AI Can Do It For You?

Stop writing code like it’s 1970! Let AI do the heavy lifting - click the sparkles to copy a perfectly formatted prompt for ChatGPT, Claude, or your favorite AI assistant.

Authorizations

Authorization
string
header
required

API key for authentication. Format: sk_live_xxxxxxxxxxxxx Get your API key from the Dashboard.

Query Parameters

channel_url
string
required
Example:

"https://www.youtube.com/@CozyCraftYT"

Response

The response is of type object.