Skip to main content
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 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_id
string

Channel ID

Example:

"UCXuqSBlHAE6Xw-yeJA0Tunw"

search_query
string
required

Search keyword

Example:

"AMD"

language_code
string
default:en

Language code, default: en

country_code
string
default:US

Country code, default: US

continuation_token
string

Used for paginated retrieval of more results. Default: None

Response

The response is of type object.