using System.Security.Cryptography.X509Certificates;
using System.Net.Security;
public static void Main()
string result = String.Empty;
string urlTypeForm = "https://api.typeform.com/v1/form/XbooY7?key=93fc605f3a549c9264c6ff575e29a4043e5b09ac";
string chaveTypeForm = "93fc605f3a549c9264c6ff575e29a4043e5b09ac";
var httpWebRequest = (HttpWebRequest)WebRequest.Create(urlTypeForm);
httpWebRequest.ContentType = "application/json";
httpWebRequest.Accept = "*/*";
httpWebRequest.Method = "GET";
var httpResponse = (HttpWebResponse)httpWebRequest.GetResponse();
using (var streamReader = new StreamReader(httpResponse.GetResponseStream()))
result = streamReader.ReadToEnd();
Console.WriteLine(result);