Here is my code, which defaultly send a request with ssl varification:
WebRequest reqGET = WebRequest.Create(uri);
reqGET.Method = "GET";
WebResponse resp = reqGET.GetResponse();
Stream stream = resp.GetResponseStream();
StreamReader sr = new StreamReader(stream);
string rawResponse = sr.ReadToEnd();
I send this query through Postman program with turned off option of ssl verification and i get correct response: enter image description here