FlowDrop Docs

List execution history

Retrieve execution history across all workflows. Supports filtering by workflow, status, and date range.

GET
/executions

Authorization

AuthorizationBearer <token>

JWT token for authentication

In: header

Query Parameters

workflow_id?string

Filter by workflow UUID

Formatuuid
status?string

Filter by execution status

Value in

  • "pending"
  • "running"
  • "completed"
  • "failed"
  • "cancelled"
limit?integer

Maximum number of results

Range1 <= value <= 100
Default50
offset?integer

Number of results to skip

Range0 <= value
Default0

Response Body

application/json

application/json

application/json

curl -X GET "https://example.com/executions"
{  "success": true,  "message": "string",  "error": "string",  "data": [    {      "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",      "workflow_id": "string",      "status": "string",      "created": "2019-08-24T14:15:22Z",      "updated": "2019-08-24T14:15:22Z"    }  ]}