Overview
Start here when you want to run Collinear’s Assess pipeline programmatically. This page links the upload, judge creation, and run endpoints in the order you must call them. Evaluating conversations requires a short pipeline of API calls. Use this guide as the canonical reference for wiring the SDK or custom scripts to the Assess dashboard.- Upload data with
POST /api/v1/dataset/upload/platform
to get adataset_id
. - Spin up a judge via
POST /api/v1/judge/create/sdk
and capture itsid
. - Trigger the run using this endpoint to score every row.
Request blueprint
dataset_id
: UUID from the upload step.judge_ids
: Array of judge IDs (include the SDK helper judge you just created).space_id
: Same space you used for upload and judge creation.name
: Display name for the evaluation run.roll_data
: Optional boolean, defaulttrue
, to generate aggregate metrics.
Example workflow
Response snapshot
evaluation_result
array confirms the run executed; drill into the dashboard
for full rollups and trend views.Authorizations
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Body
application/json