---
title: "List workflows"
method: GET
path: "/workflows"
tags: ["Workflows"]
---

# List workflows

`GET /workflows`

Paginated list of workflows in the caller's org. Filters via query params: search, status, platform. Use POST /workflows/list for richer body-shaped queries with sort.

## Query parameters

- `limit` integer
- `offset` integer
- `search` string — free-text search across workflow name
- `status` string[], nullable — filter by workflow status (lowercase)
- `platform` string[], nullable — filter by device platform (lowercase)
- `created_after` string — only workflows created at/after this RFC3339 time
- `created_before` string — only workflows created at/before this RFC3339 time
- `last_run_after` string — only workflows last run at/after this RFC3339 time
- `last_run_before` string — only workflows last run at/before this RFC3339 time

## Response `200`

OK

- WorkflowWorkflowListResponse
  - `limit` integer, required
  - `offset` integer, required
  - `total` integer, required
  - `workflows` WorkflowWorkflowResponse[], nullable, required
    - `stats` WorkflowWorkflowStats, required
      - `success_rate` number, double, required
      - `total_runs` integer, required
    - `workflow` WorkflowWorkflowSummary, required
      - `create_date` string, date-time, required
      - `goal` string, required
      - `id` string, required
      - `last_run_at` string, date-time, nullable, required
      - `name` string, required
      - `ocr_engine` string, required
      - `organization_id` string, nullable, required
      - `platform` string, required
      - `status` string, required
      - `update_date` string, date-time, required
      - `user_id` string, required

## Other responses

- `default` — Error

---

[API](https://skmtc.net/axilioai/apis/axilio-api-2.md) · [All operations](https://skmtc.net/axilioai/apis/axilio-api-2/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/axilioai/axilio-api-2/versions/d7ecf9466d6d/schema)
