GET
/
health
JavaScript
import Roark from '@roarkanalytics/sdk';

const client = new Roark({
  bearerToken: 'My Bearer Token',
});

const health = await client.health.get();

console.log(health.data);
{
  "data": {
    "status": "healthy",
    "version": "1.0.0",
    "timestamp": "2025-07-25T22:45:44.128Z"
  }
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Response

200
application/json

Health check response

The response is of type object.