Can you tell which network a video belongs to through youtube's api?
Can you tell which network a video belongs to through youtube's api?
I can not tell you if the API has this information but one way to get this is through the meta tag attribution
which has the information of which network the channel is part of.
To retrieve this information using PHP:
$tags = get_meta_tags("http://www.youtube.com/watch?v=_8AZT40gH5E");
echo $network = $tags['attribution']; // Endemol_beyond_Brasil
Source: link