C#

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

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