using System.Collections;
using System.Collections.Generic;
using Newtonsoft.Json.Linq;
public static void Main()
System.Net.ServicePointManager.ServerCertificateValidationCallback = delegate { return true; };
WebClient w = new WebClient();
string json = w.DownloadString(new Uri("https://jsonkeeper.com/b/GETO"));
var firstObject = JObject.Parse(json);
var guid = firstObject.Properties().Select(p => p.Name).FirstOrDefault();
Root output = firstObject[guid].ToObject<Root>();
Console.Write(output.Content.Items.Count());
public int Status { get; set; }
public Headers Headers { get; set; }
public Content Content { get; set; }
public List<Item> Items { get; set; }
[JsonProperty("Content-Type")]
public string ContentType { get; set; }
public DateTime Timestamp { get; set; }
public double Value { get; set; }
public string UnitsAbbreviation { get; set; }