using System.Threading.Tasks;
public static void Main()
var client = new HttpClient();
var request = new HttpRequestMessage(HttpMethod.Get, "https://api.healthplanone.com/sf/v1-uat/zip/06451");
var response = await client.SendAsync(request);
response.EnsureSuccessStatusCode();
Console.WriteLine(await response.Content.ReadAsStringAsync());