Get Evaluations

Get the evaluations associated with a project. Sorting and filtering are supported through query params for categorical columns and the `created_at` timestamp. Sorting is supported for the `dataset`, `config`, `status` and `evaluator-{evaluator_id}` columns. Specify sorting with the `sort` query param, with values `{column}.{ordering}`. E.g. ?sort=dataset.asc&sort=status.desc will yield a multi-column sort. First by dataset then by status. Filtering is supported for the `id`, `dataset`, `config` and `status` columns. Specify filtering with the `id_filter`, `dataset_filter`, `config_filter` and `status_filter` query params. E.g. ?dataset_filter=my_dataset&dataset_filter=my_other_dataset&status_filter=running will only show rows where the dataset is "my_dataset" or "my_other_dataset", and where the status is "running". An additional date range filter is supported for the `created_at` column. Use the `start_date` and `end_date` query parameters to configure this.

Authentication

X-API-KEYstring
API Key authentication via header

Query parameters

project_idstringRequired

String ID of project. Starts with pr_.

idstringOptional

A list of evaluation run ids to filter on. Starts with ev_.

start_datestringOptionalformat: "date"
Only return evaluations created after this date.
end_datestringOptionalformat: "date"
Only return evaluations created before this date.
sizeintegerOptionalDefaults to 50
pageintegerOptionalDefaults to 0
evaluatee_idstringOptional

String ID of evaluatee version to return. If not defined, the first evaluatee will be returned. Starts with evv_.

Response

Successful Response
recordslist of objects
pageinteger
sizeinteger
totalinteger

Errors