private static T AuthorizedRequest <T>(IWebHandler handler, string url, string apiKey) => handler.GetRequest <T>(url, new Dictionary <string, string>()
 {
     { "Authorization", string.Format("Bearer {0}", apiKey) }
 });
 private static T UnauthorizedRequest <T>(IWebHandler handler, string url) => handler.GetRequest <T>(url, null);