Skip to main content
GET
/
api
/
v1
/
evaluations
/
List Evaluations
curl --request GET \
  --url https://api.primeintellect.ai/api/v1/evaluations/ \
  --header 'Authorization: Bearer <token>'
{
  "evaluations": [
    {
      "evaluation_id": "<string>",
      "name": "<string>",
      "status": "RUNNING",
      "eval_type": "suite",
      "user_id": "<string>",
      "team_id": "<string>",
      "environment_ids": [
        "<string>"
      ],
      "suite_id": "<string>",
      "run_id": "<string>",
      "version_id": "<string>",
      "model_name": "<string>",
      "dataset": "<string>",
      "framework": "<string>",
      "task_type": "<string>",
      "description": "<string>",
      "tags": [],
      "total_samples": 123,
      "avg_score": 123,
      "min_score": 123,
      "max_score": 123,
      "started_at": "2023-11-07T05:31:56Z",
      "completed_at": "2023-11-07T05:31:56Z",
      "created_at": "2023-11-07T05:31:56Z",
      "updated_at": "2023-11-07T05:31:56Z",
      "metadata": {},
      "metrics": {},
      "viewer_url": "<string>",
      "statistics": {},
      "chartData": {},
      "rubricInfo": {},
      "detailedMetrics": {},
      "rewardStats": {}
    }
  ],
  "total": 123,
  "skip": 123,
  "limit": 123
}

Authorizations

Authorization
string
header
required

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

Query Parameters

team_id
string | null

Filter by specific team ID

environment_id
string | null

Filter by environment ID

suite_id
string | null

Filter by suite ID

skip
integer
default:0
Required range: x >= 0
limit
integer
default:50
Required range: 1 <= x <= 100

Response

Successful Response

Response for listing evaluations

evaluations
GetEvaluationResponse · object[]
required
total
integer
required
skip
integer
required
limit
integer
required
I