C

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

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