curl --request GET \
--url https://api.example.com/workflows \
--header 'Authorization: Bearer <token>'{
"data": [
{
"name": "Fix Build",
"slug": "fix_build",
"filename": "fix_build.fabro",
"last_run": {
"ran_at": "2025-09-15T12:00:00Z"
},
"schedule": {
"expression": "0 */6 * * *",
"next_run": "2025-09-15T18:00:00Z"
}
}
],
"meta": {
"has_more": true
}
}Returns a paginated list of workflow definitions available for execution.
curl --request GET \
--url https://api.example.com/workflows \
--header 'Authorization: Bearer <token>'{
"data": [
{
"name": "Fix Build",
"slug": "fix_build",
"filename": "fix_build.fabro",
"last_run": {
"ran_at": "2025-09-15T12:00:00Z"
},
"schedule": {
"expression": "0 */6 * * *",
"next_run": "2025-09-15T18:00:00Z"
}
}
],
"meta": {
"has_more": true
}
}JWT bearer token issued by fabro-web. See the Authentication guide for details.
Maximum number of items to return per page.
1 <= x <= 100Number of items to skip before returning results.
x >= 0