Feel free to use the status information on this site for your own site or service. I would appreciate if you link back to the site. A JSON-endpoint is provided for convenience:
 Assetto Corsa: /api/v2/ac/status
 Assetto Corsa Competizione: /api/v2/acc/status
The status is updated every 5 minutes (e.g. 06:00, 06:05, 06:10...). Take this into consideration when timing your requests. To avoid caching, time your requests ~30 seconds after each 5 minute interval.
Example up response:
{
  "_id": "66b5ed51438a6f902d1386d3",
  "date": "2023-01-01T03:00:00.000Z",
  "status": 1,
  "ping": 35,
  "servers": 1600,
  "players": 850,
  "__v": 0,
  "tracked_since": "2022-03-21T00:00:00.000Z"
}Example down response:
{
  "_id": "66b5ed51438a6f902d1386d3",
  "date": "2023-01-01T03:00:00.000Z",
  "status": 0,
  "ping": null,
  "servers": 1600,
  "players": 0,
  "__v": 0,
  "down_since": "2023-01-01T02:00:00.000Z",
  "tracked_since": "2022-03-21T00:00:00.000Z"
}The following properties are available:
date: The date of when this status check was performed 
status: 1 for up, 0 for down, -1 for unknown status1
ping: The time it took to connect and fetch the server list (milliseconds). Will be null if status != 1
servers: The number of public (non-passworded) servers that were found. If status != 1, the number of servers that were available before the outage is returned 
players: The number of players on public (non-passworded) servers. Will be 0 if status != 1
down_since: Available if status == 0
_id, __v, tracked_since: Internal id, document version and first available document date, can effectively be ignored 
1 An unknown status (-1) occurs when a connection can be established, but no servers are found.