List evaluation results
const url = 'https://localhost:10001/api/v2/evaluations?since=2026-01-15T09%3A30%3A00Z&until=2026-01-15T09%3A30%3A00Z';const options = {method: 'GET', headers: {Authorization: '<Authorization>'}};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request GET \ --url 'https://localhost:10001/api/v2/evaluations?since=2026-01-15T09%3A30%3A00Z&until=2026-01-15T09%3A30%3A00Z' \ --header 'Authorization: <Authorization>'Retrieve a paginated list of evaluation results with optional filters
Authorizations
Section titled “Authorizations ”Parameters
Section titled “ Parameters ”Query Parameters
Section titled “Query Parameters ”Filter by application ID
Filter by indicator UUID
Filter by project ID
Filter by applied policy ID, slug:my-policy, or urn:cid:bafy…
Filter by applied policy control ID
Filter by result status (pass, fail, error, awaiting_evaluation)
Filter evaluations after this timestamp, RFC 3339
Filter evaluations before this timestamp, RFC 3339
Number of results to return (default: 50, max: 200)
Number of results to skip (default: 0)
Responses
Section titled “ Responses ”Paginated evaluation results
A page of evaluation results, with the total available for pagination
object
One indicator evaluation, including its criteria outcomes and any declaration it produced
object
One criterion’s outcome within an evaluation; the evaluation passes only when every criterion does
object
Evaluation wall time in milliseconds
object
The machine-readable reason a criterion failed, including the values compared
object
Urn:uuid form
Urn:uuid form
Example
{ "results": [ { "criterionResults": [ { "status": "pass" } ], "failureDetails": [ { "arrayMatchMode": "all", "criteriaType": "string", "operator": "eq" } ], "result": "pass" } ]}Bad request - Invalid filter parameter
Error body returned by the governance endpoints; the message is human-readable and not a stable identifier
object
Example
{ "error": "Invalid request body"}Unauthorized - Authentication required
Error body returned by the governance endpoints; the message is human-readable and not a stable identifier
object
Example
{ "error": "Invalid request body"}Forbidden - Insufficient permissions
Error body returned by the governance endpoints; the message is human-readable and not a stable identifier
object
Example
{ "error": "Invalid request body"}Internal server error
Error body returned by the governance endpoints; the message is human-readable and not a stable identifier
object
Example
{ "error": "Invalid request body"}