Skip to main content
GET
/
v1
/
workflows
/
executions
List recent executions
curl --request GET \
  --url https://api.beltic.com/v1/workflows/executions \
  --header 'Authorization: Bearer <token>'
[
  {
    "executionId": "<string>",
    "workflowId": "<string>",
    "updatedAt": "2023-11-07T05:31:56Z",
    "metadata": {
      "filenames": [
        "<string>"
      ],
      "pausedBlocks": [
        {
          "blockType": "<string>"
        }
      ],
      "verdict": {}
    }
  }
]

Documentation Index

Fetch the complete documentation index at: https://docs.beltic.com/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

Beltic-issued JWT bearer token.

Query Parameters

limit
integer
default:100

Maximum number of executions to return. Defaults to 100.

Required range: x >= 1

Response

List of execution summaries.

executionId
string
required
workflowId
string
required
status
enum<string>
required

Terminal or paused status of a workflow execution.

Available options:
completed,
failed,
paused,
cancelled
updatedAt
string<date-time>
required
metadata
object
required