Get a status update of the service

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

The service contains an internal data store that is used for client data and a job priority queue that handles incoming processing requests. 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' \
  --header 'x-auth-token: your_token'
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)