C#

Below is an example of making a HTTP request to Unical Healthchecks from C#.

using (var client = new System.Net.WebClient())
{
       client.DownloadString("https://healthchecks.unical.it/ping/your-uuid-here");
}