public static void Main(string[] args)
string yourapikey = "AIzaSyALhwQhOeMJVS3-RFq6B_lJYTr-xkL4zk0";
string searchString = "Weed in Denver, Colorado";
string formattedSearchString = searchString.Replace(" ", "%20");
string location = ("Denver, colorado").Replace(" ", "%20");
string keyword = ("Weed").Replace(" ", "%20");
string mapsAPIString = "";
string url = String.Format("https://maps.googleapis.com/maps/api/place/nearbysearch/json?location=Colorado&radius=2000&keyword=Weed&key={0}", yourapikey);
string urlResponse = URLRequest(url);
Console.WriteLine(urlResponse);
public static string URLRequest(string url)
HttpWebRequest request = (HttpWebRequest)WebRequest.Create(url);
request.UserAgent = "Mozilla/5.0 (compatible; MSIE 9.0; Windows Phone OS 7.5; Trident/5.0; IEMobile/9.0)";
string responseContent = null;
using (WebResponse response = request.GetResponse())
using (Stream stream = response.GetResponseStream())
using (StreamReader streamreader = new StreamReader(stream))
responseContent = streamreader.ReadToEnd();
return (responseContent);