Evaluation Items

evaluation_items

Methods

Get Evaluation Item ->
get/v5/evaluation-items/{evaluation_item_id}

Get Evaluation Item

List Evaluation Items -> CursorPage<>
get/v5/evaluation-items

List Evaluation Items

query Parameters
completion_status:
Optional

Filter items by completion status. Pass 'failed' to return only items with errors, 'passed' for items without errors. Pass 'all' or omit to return all items.

"failed"
"passed"
"all"
ending_before: string
Optional
evaluation_id: string
Optional
include_archived: boolean
Optional
limit: number
Optional
(maximum: 10000, minimum: 1, default: 100)
sort_by: string
Optional
sort_order:
Optional
(default: "asc")
"asc"
"desc"
starting_after: string
Optional
Response fields
has_more: boolean

Whether there are more items left to be fetched.

items: Array<>
total: number

The total of items that match the query. This is greater than or equal to the number of items returned.

limit: number
Optional
(default: 100)

The maximum number of items to return.

object: "list"
Optional
(default: "list")
Request example
200Example
Export Evaluation Items ->
post/v5/evaluation-items/export

Export Evaluation Items

Domain types

Component = { data, label }
Container = { children, direction }
EvaluationItem = { id, created_at, created_by, 8 more... }
EvaluationItemExport = { filename, content, signed_url }

Response model for exporting evaluation items. This class represents the response when users export evaluation items. It contains either a signed URL to download the exported data from object storage, or the actual content bytes when direct download is used (in environments where object storage is not configured).