Im usíng this code to get views of video from youtube:
WebClient ccn = new WebClient(); string dog = ccn.DownloadString(\"https://gdata.youtube.com/feeds/ap
You can use JObject
JObject
var obj = JObject.Parse(dog); //(OR JsonConvert.DeserializeObject(dog) as JObject;) foreach (string view in obj["entry"]["media$group"]["yt$statistics"]["viewCount"]) { }