List Steps
List steps with status and artifact summaries.
Sorted by started_at ascending with step_id as the tiebreaker
(the same compound key the underlying index uses). Pass after for
the next page, before for the previous page — mutually exclusive.
run_id is optional; when omitted the list is scoped to the caller’s
organization.
run_id when you want the complete set of steps for one run, or combine filters such as block_id, step_id, block_type, and status to inspect a narrower set.
Returns the canonical { "data": [...], "list_metadata": { "before": null, "after": null } } pagination envelope shared with all Retab list endpoints. Cursor pagination is not yet implemented for this endpoint — list_metadata is always { before: null, after: null }. When run_id is omitted, the response is organization-scoped and bounded by limit with a default of 200 rows.
Steps include an artifact ref when the block produced a persisted record.
Use List Artifacts with step_id to
dereference one ref, or with run_id to fetch all artifact records for the run.
Authorizations
Query Parameters
Optional workflow run ID filter.
Optional logical block ID filter.
Optional step ID filter.
Optional block type filter. Repeat the query parameter for multiple values.
Optional step lifecycle status filter. Repeat the query parameter for multiple values.
Step id cursor: return the page before this id (mutually exclusive with after).
Step id cursor: return the page after this id (mutually exclusive with before).
Maximum number of steps to return per page (1-1000). Each step hydrates its handle payloads from the artifact store, so raise it deliberately for larger pages and use cursor pagination for the rest.
1 <= x <= 1000