The APIs provided here can be used to access the database layer of the streaming solutions provided by Aventia AS. With these APIs you will be able to expand your solution with extended information or even make your own display layer.
static async Task RunAsync() { using (var client = new HttpClient()) { string responseType = "application/xml"; // can be changed to application/json client.BaseAddress = new Uri("BASE-URL-TO-API-SOLUTION"); client.DefaultRequestHeaders.Accept.Clear(); client.DefaultRequestHeaders.Accept.Add(new MediaTypeWithQualityHeaderValue(responseType)); HttpResponseMessage response = await client.GetAsync("sections"); if (response.IsSuccessStatusCode) { string data = await response.Content.ReadAsStringAsync(); Console.WriteLine("data: {0}", data); } } }