Skip to main content
GET
/
api
/
v1
/
evaluations
/
{evaluation_id}
Get Evaluation
curl --request GET \
  --url https://api.primeintellect.ai/api/v1/evaluations/{evaluation_id} \
  --header 'Authorization: Bearer <token>'
{
  "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": {}
}

Authorizations

Authorization
string
header
required

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

Path Parameters

evaluation_id
string
required

Response

Successful Response

Response for getting evaluation details

evaluation_id
string
required
name
string
required
status
enum<string>
required

Evaluation status enum

Available options:
RUNNING,
COMPLETED,
FAILED,
CANCELLED
eval_type
enum<string>
required

Evaluation type enum

Available options:
suite,
training,
environment
total_samples
integer
required
created_at
string<date-time>
required
updated_at
string<date-time>
required
user_id
string | null

User ID of evaluation owner

team_id
string | null

Team ID if evaluation is owned by a team

environment_ids
string[] | null
suite_id
string | null
run_id
string | null
version_id
string | null
model_name
string | null
dataset
string | null
framework
string | null
task_type
string | null
description
string | null
tags
string[]
avg_score
number | null
min_score
number | null
max_score
number | null
started_at
string<date-time> | null
completed_at
string<date-time> | null
metadata
object | null
metrics
object | null
viewer_url
string | null
statistics
object | null

Statistics format (totalResults, totalReward, avgReward)

chartData
object | null

Histogram and statistics for visualization

rubricInfo
object | null

Rubric with detected metrics and weights

detailedMetrics
object | null

Detailed statistics for each detected metric

rewardStats
object | null

Reward statistics for backward compatibility

I