account_id are ever returned, and only those the authenticated user is allowed to see.include to pull in the user who created a workflow, the user who turned it off, its recent run statistics, or the errors it has run into.workflows:read OAuth2 scope.X-Api-Key: ********************curl --location --globoff 'https://api.leadfeeder.com/v1/workflows?account_id=123456&page[cursor]=WyAzNzAwMCwgIjIzNTYyMCJd&page[size]=20&include=created_by%2Crun_stats%2Cerrors&workflow_type=company&enabled=true' \
--header 'X-Api-Key: <api-key>'{
"data": [
{
"type": "workflow",
"id": "9f8b7c6d5e4f",
"attributes": {
"name": "Route hot leads to Slack",
"description": "Notifies #sales whenever a company lands on the Hot Leads list.",
"enabled": true,
"workflow_type": "company",
"version": 3,
"definition_version": "V1",
"definition": {
"triggers": [
{
"name": "company_added_to_list",
"filters": [
{
"attribute": "list_id",
"op": "eq",
"value": "42"
}
],
"options": {}
}
],
"steps": {
"notify_sales": {
"action_name": "send_company_to_slack",
"options": {
"channel": "#sales"
}
}
},
"order": {
"trigger": [
"notify_sales"
]
}
},
"has_errors": false,
"disabled_at": null,
"disabled_reason": null,
"created_at": "2026-07-20T09:15:00Z",
"updated_at": "2026-08-01T10:00:00Z",
"app_url": "https://app.leadfeeder.com/z/123456/workflows/9f8b7c6d5e4f"
},
"relationships": {
"created_by": {
"id": "123456",
"type": "user"
},
"disabled_by": null
}
}
],
"meta": {
"credits": {
"charged": 0
},
"pagination": {
"next_cursor": null,
"total_count": 1
},
"request_id": "cf054205-dd8c-4473-8689-07c30fe0789f"
}
}