using System.Collections.Generic;
var client = new WebzClient(token: "a2c01bbd-9926-42a0-9919-c98a9483f61e");
var output = await client.QueryAsync("filterWebContent", new Dictionary<string, string> { { "q", "github" } });
Console.WriteLine(output["posts"][0]["text"]);
Console.WriteLine(output["posts"][0]["published"]);
output = await output.GetNextAsync();
Console.WriteLine(output["posts"][0]["thread"]["site"]);