Skip to main content
GET
List all workflow evals for a workflow. Optionally filter by target_block_id to get only the evals that target a specific block. Each entry in data is a full WorkflowEval (target, source, assertion, schema-drift state, latest run summaries). Use this to populate an Evals page or to check whether a workflow has any evals before offering to run them. The response uses the canonical Retab list envelope: { "data": [...], "list_metadata": { "before": null, "after": null } }.

Authorizations

Authorization
string
header
required

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

Query Parameters

workflow_id
string
required
target_block_id
string | null
before
string | null
after
string | null
limit
integer
default:50
Required range: 1 <= x <= 100
order
enum<string>
default:desc
Available options:
asc,
desc

Response

Successful Response

A page of WorkflowEval resources. data holds the items and list_metadata carries the before/after cursors; pass after to fetch the next page.

data
WorkflowEval · object[]
required
list_metadata
ListMetadata · object
required

Boundary resource IDs for page navigation.