Get a status update of the service

You can use this API to get status information about the service

You can get current health status of the service by calling this API.

curl --request GET \
  --url https://api.behavioralsignals.com/status \
  --header 'accept: application/json' \
var request = require("request");

var options = { method: 'GET',
  url: 'https://api.behavioralsignals.com/status',
  headers: { 'x-auth-token': 'your_token', accept: 'application/json' } };

request(options, function (error, response, body) {
  if (error) throw new Error(error);

  console.log(body);
});
import requests

url = "https://api.behavioralsignals.com/status"

headers = {
    'accept': "application/json",
    'x-auth-token': "your_token"
    }

response = requests.request("GET", url, headers=headers)

print(response.text)