Skip to main content
GET
/
api
/
v1
/
workflow
/
fetch
Get Workflows
curl --request GET \
  --url https://app.dograh.com/api/v1/workflow/fetch
[
  {
    "id": 123,
    "name": "<string>",
    "status": "<string>",
    "created_at": "2023-11-07T05:31:56Z",
    "total_runs": 123
  }
]
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.

Headers

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

Query Parameters

status
string | null

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

Response

Successful Response

id
integer
required
name
string
required
status
string
required
created_at
string<date-time>
required
total_runs
integer
required