string phone = Console.ReadLine();
WebClient client = new WebClient();
client.Headers.Add("Content-Type:application/json"); //Content-Type
client.Headers.Add("Accept:application/json");
string result = client.DownloadString("http://localhost:63097/api/Search/" + phone);