Skip to main content
GET
/
api
/
v1
/
evaluations
/
{evaluation_id}
/
samples
Get Samples
curl --request GET \
  --url https://api.primeintellect.ai/api/v1/evaluations/{evaluation_id}/samples \
  --header 'Authorization: Bearer <token>'
{
  "evaluation_id": "<string>",
  "samples": [
    {}
  ],
  "total": 123,
  "page": 123,
  "limit": 123,
  "total_pages": 123
}

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

Query Parameters

page
integer
default:1
Required range: x >= 1
limit
integer
default:100
Required range: 1 <= x <= 1000

Response

Successful Response

Response for getting evaluation samples

evaluation_id
string
required
samples
Samples · object[]
required
total
integer
required
page
integer
required
limit
integer
required
total_pages
integer
required
I