Running in debug mode, do not use in production.

C#

Below is an example of making a HTTP request to Applied Cron Checks from C#.

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