Check API status ✅
Checks the status of the API, with a basic request to the database behind the scenes to ensure that the API is really available.
GET /status
curl \
-X GET https://api.ppe-analytics.com/api/v1/status
Response examples (200)
{
"status": "OK",
"message": "Welcome to Deck API! Check out the API doc at https://api-doc.ppe-analytics.com"
}
Response examples (503)
{
"status": "ERROR",
"message": "Deck API is temporarily unavailable. We're working on it to bring it back as soon as possible."
}