using Newtonsoft.Json.Linq;
public static void Main()
"{ \"Game\": \"Just Chatting\", \"Viewers\": 122, \"Image\": \"https://static-cdn.jtvnw.net/previews-ttv/live_user_nutty-1920x1080.jpg\" }, " +
"{ \"Game\": \"Software and Game Development\", \"Viewers\": 20, \"Image\": \"https://static-cdn.jtvnw.net/previews-ttv/live_user_clonekorp-1920x1080.jpg\" }" +
JObject data = JObject.Parse(json);
string itemTitle = (string)data["Followers"].First.First["Image"];
Console.WriteLine(itemTitle);