GET/api/v1/runs?limit=10&status=successList run summaries with cursor pagination and optional status/workflow filters.
Required scope: runs:read
curl https://www.finkmesh.com/api/v1/runs?limit=10&status=success \ -H "Authorization: Bearer $FINKMESH_TOKEN"
{
"data": [
{
"id": "run_123",
"workflowId": "wf_123",
"status": "success",
"trigger": "api",
"stepCount": 3
}
],
"pagination": { "limit": 10, "hasMore": false, "nextCursor": null },
"requestId": "req_...",
"apiVersion": "2026-07-01"
}