YouTube Channel Results API
When a YouTube search contains channel results, they are parsed and exist within the channel_results
array in the JSON output.
API Examples
Channel results overview
When SerpApi encounters channel results, we add them to our JSON output as the array channel_results
. For each channel result, we are able to extract its position_on_page
, title
, link
, verified
(returnes true if channel is verified), video_count
, description
, thumbnail
and more.

{
...
"channel_results": [
{
"position_on_page": 2,
"title": "Red Hot Chili Peppers",
"link": "https://www.youtube.com/user/RHCPtv",
"verified": true,
"subscribers": 5680000.0,
"video_count": 139,
"description": "The official YouTube channel of the Red Hot Chili Peppers.",
"thumbnail": "https://yt3.ggpht.com/a/AATXAJwp6rhWSuO0soNzi4a6-XG_vyzRFkchZoBalGYNUA=s88-c-k-c0x00ffffff-no-rj-mo"
},
...
],
...
}