Check API connectivity and status
GET
/status
const url = 'https://example.com/api/v1/status';const options = {method: 'GET'};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request GET \ --url https://example.com/api/v1/statusResponses
Section titled “Responses”API status message
Media typeapplication/json
object
message
string
database
Whether the database connection is initialized
boolean
tasq
Whether the TasQ server is running
boolean
Examplegenerated
{ "message": "example", "database": true, "tasq": true}