> ## Documentation Index
> Fetch the complete documentation index at: https://docs.sidenet.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# List workflows

> Lists non-deleted workflows for the org, newest first. By default only org (Studio-authored) workflows; `?owner=chatter` lists the ones end users built through a builder agent (optionally narrowed to one user with `&userId=`), `?owner=all` both.



## OpenAPI

````yaml /api-reference/openapi.json get /v1/workflows
openapi: 3.1.0
info:
  title: Sidenet API
  version: 1.0.0
  description: >-
    Sidenet HTTP endpoints exposed by the Sidenet Studio. All routes require an
    api key that can be generated through the studio in studio.sidenet.ai.
servers:
  - url: https://api.sidenet.ai
security:
  - bearerAuth: []
paths:
  /v1/workflows:
    get:
      tags:
        - Workflows
      summary: List workflows
      description: >-
        Lists non-deleted workflows for the org, newest first. By default only
        org (Studio-authored) workflows; `?owner=chatter` lists the ones end
        users built through a builder agent (optionally narrowed to one user
        with `&userId=`), `?owner=all` both.
      parameters:
        - name: owner
          in: query
          required: false
          schema:
            type: string
            enum:
              - org
              - chatter
              - all
            default: org
          description: >-
            Whose workflows: `org` (default), `chatter` (end-user built), or
            `all`.
        - name: userId
          in: query
          required: false
          schema:
            type: string
            example: user_4821
          description: >-
            With `owner=chatter`: only this end user's workflows (their external
            id).
      responses:
        '200':
          description: Every workflow in the organization, newest first
          content:
            application/json:
              schema:
                type: object
                properties:
                  workflows:
                    type: array
                    description: >-
                      The records only — no definition. Fetch one with GET
                      /v1/workflows/{id} for its steps and schemas.
                    items:
                      type: object
                      properties:
                        id:
                          type: string
                          format: uuid
                        name:
                          type: string
                        description:
                          type: string
                          nullable: true
                        active_version_id:
                          type: string
                          format: uuid
                          nullable: true
                        owner_kind:
                          type: string
                          enum:
                            - org
                            - chatter
                          description: >-
                            `org` for Studio-authored workflows, `chatter` for
                            end-user built ones.
                        owner_external_id:
                          type: string
                          nullable: true
                          description: >-
                            The owning end user's external id when `owner_kind`
                            is `chatter`.
                        created_at:
                          type: string
                          format: date-time
                        updated_at:
                          type: string
                          format: date-time
              example:
                workflows:
                  - id: 4c2f9e18-7a63-4d05-b1e8-93a7c0f2d641
                    name: Refund triage
                    description: Classifies a refund request and fetches the order
                    active_version_id: e81b4a72-0c95-4f38-a6d2-5b17e9c4038f
                    owner_kind: org
                    owner_external_id: null
                    created_at: '2026-06-19T08:41:12.330Z'
                    updated_at: '2026-08-09T12:17:55.204Z'
        '400':
          description: Missing headers or invalid `owner`
components:
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      description: >-
        Organization API key, generated in studio.sidenet.ai. Backend only —
        never in a browser.

````