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

# List Workflows

> List all workflows accessible to the authenticated organization.

Returns workflows owned by the organization associated with the API key or user token.

- **limit**: Maximum number of workflows to return (1-100, default: 50)
- **offset**: Number of workflows to skip for pagination (default: 0)



## OpenAPI

````yaml /api-reference/openapi.json get /public/workflows
openapi: 3.1.0
info:
  title: Rastro Public API
  description: >-
    Public API for enrichment, catalog management, workflows, activities,
    snapshots, taxonomy, and MCP integrations.
  version: 0.1.0
servers:
  - url: https://catalogapi.rastro.ai/api
security:
  - bearerAuth: []
paths:
  /public/workflows:
    get:
      tags:
        - Flows
      summary: List Workflows
      description: >-
        List all workflows accessible to the authenticated organization.


        Returns workflows owned by the organization associated with the API key
        or user token.


        - **limit**: Maximum number of workflows to return (1-100, default: 50)

        - **offset**: Number of workflows to skip for pagination (default: 0)
      operationId: list_workflows_api_public_workflows_get
      parameters:
        - name: search
          in: query
          required: false
          schema:
            anyOf:
              - type: string
              - type: 'null'
            description: Optional case-insensitive search on workflow name/description
            title: Search
          description: Optional case-insensitive search on workflow name/description
        - name: limit
          in: query
          required: false
          schema:
            type: integer
            maximum: 100
            minimum: 1
            default: 50
            title: Limit
        - name: offset
          in: query
          required: false
          schema:
            type: integer
            minimum: 0
            default: 0
            title: Offset
        - name: X-Organization-Id
          in: header
          required: false
          schema:
            anyOf:
              - type: string
              - type: 'null'
            title: X-Organization-Id
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/PublicWorkflowListResponse'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
      security:
        - bearerAuth: []
components:
  schemas:
    PublicWorkflowListResponse:
      properties:
        workflows:
          items:
            $ref: '#/components/schemas/PublicWorkflowSummary'
          type: array
          title: Workflows
        total:
          type: integer
          title: Total
        page:
          type: integer
          title: Page
        page_size:
          type: integer
          title: Page Size
      type: object
      required:
        - workflows
        - total
        - page
        - page_size
      title: PublicWorkflowListResponse
      description: Response from listing workflows
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    PublicWorkflowSummary:
      properties:
        id:
          type: string
          title: Id
        name:
          type: string
          title: Name
        description:
          anyOf:
            - type: string
            - type: 'null'
          title: Description
        total_nodes:
          type: integer
          title: Total Nodes
        created_at:
          type: string
          format: date-time
          title: Created At
        updated_at:
          type: string
          format: date-time
          title: Updated At
        workflow_url:
          type: string
          title: Workflow Url
      type: object
      required:
        - id
        - name
        - description
        - total_nodes
        - created_at
        - updated_at
        - workflow_url
      title: PublicWorkflowSummary
      description: Summary of a workflow for listing
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
              - type: string
              - type: integer
          type: array
          title: Location
        msg:
          type: string
          title: Message
        type:
          type: string
          title: Error Type
      type: object
      required:
        - loc
        - msg
        - type
      title: ValidationError
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: Rastro API key or user token

````