GET
/
v1
/
evaluation
/
evaluators
import Roark from '@roarkanalytics/sdk';

const client = new Roark({
  bearerToken: process.env['ROARK_API_BEARER_TOKEN'], // This is the default and can be omitted
});

const response = await client.evaluation.getEvaluators();

console.log(response);
"<any>"

Authorizations

Authorization
string
header
required

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

Query Parameters

limit
string
after
string

Response

200
application/json

List of evaluators with their blocks

The response is of type any.