Skip to main content
GET
https://api.getmalakai.com/api/
/
api
/
workflows
Get All Workflows
curl --request GET \
  --url https://api.getmalakai.com/api/api/workflows \
  --header 'Authorization: <authorization>' \
  --header 'x-access-token: <x-access-token>'
{
  "responseCode": 2000,
  "message": "Workflows fetched successfully",
  "data": {
    "workflows": [
      {
        "id": "a4835860-**",
        "name": "SimpleTesting",
        "description": "A new workflow for you agent",
        "user_id": "**",
        "nodes": [],
        "edges": [],
        "ml_payload": [],
        "created_at": "2025-02-04T14:14:33.043Z",
        "updated_at": "2025-07-08T10:03:06.313Z"
      }
    ]
  }
}

Headers

Authorization
string
required
Your API key for authentication. Prefix with Bearer .
x-access-token
string
required
Your access token for authentication.

Response

data
object
An object containing the value of all the workflows as values.
data.workflows
[]
An array containing all the workflows in the system
{
  "responseCode": 2000,
  "message": "Workflows fetched successfully",
  "data": {
    "workflows": [
      {
        "id": "a4835860-**",
        "name": "SimpleTesting",
        "description": "A new workflow for you agent",
        "user_id": "**",
        "nodes": [],
        "edges": [],
        "ml_payload": [],
        "created_at": "2025-02-04T14:14:33.043Z",
        "updated_at": "2025-07-08T10:03:06.313Z"
      }
    ]
  }
}