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" } }
Returns the health status of the API and its dependencies
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
Health check response
The response is of type object.
object