C

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

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