Logic Server Status

Logic provides multiple ways to check the status of its servers. You can check the status of the Logic API server via the API healthcheck endpoint, or you can check the status of the Logic platform via the Logic Status Page.

Status Website

Logic Status Page For more detailed information about the status of the server, you can check the Logic Status Page. This page provides real-time information about the status of the Logic API and any ongoing incidents or maintenance. The Logic Status Page will show you the current status of Logic’s services, including the API and the dashboard. It will also provide information about any ongoing incidents or maintenance that may affect the performance of the Logic platform.

Healthcheck

The healthcheck endpoint is used to check the connection to the Logic server. It returns a 200 OK response if the server is reachable and functioning properly. It can be useful for troubleshooting API issues. If you get a 200 OK response, it means that the server is up and running, and you are able to reach it. If you get a different response, it may indicate that there is a problem with the server or your connection to it. You can run the healthcheck command by executing the following in your terminal:
curl -X GET https://api.logic.inc/2024-03-01/healthcheck

Example Response

{
  "success": true
}
This API call does not require any authorization or API key.