Talkr AI
API ReferenceAgents

List Agents

Retrieve all agents in your organization

Returns all agents (workflows) in your organization, including both active and archived. Each item includes summary fields — use Get an agent to retrieve the full workflow definition.

GET
/api/v1/workflow/fetch

Query Parameters

status?|

Filter by status - can be single value (active/archived) or comma-separated (active,archived)

Header Parameters

authorization?string|null
X-API-Key?string|null

Response Body

application/json

application/json

curl -X GET "https://example.com/api/v1/workflow/fetch"
[  {    "id": 0,    "name": "string",    "status": "string",    "created_at": "2019-08-24T14:15:22Z",    "total_runs": 0,    "folder_id": 0,    "workflow_uuid": "string"  }]