C#

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

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