C#

Below is an example of making an HTTP request to Mychecks from C#.

using (var client = new System.Net.WebClient())
{
       client.DownloadString("http://0.0.0.0:8000/ping/your-uuid-here");
}