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

# List workflow components

> Retrieves all workflow components in the workspace associated with your API key.

Returns a summary view (id, name, audit fields). To get the full component definition including `component_data`, call `GET /workflow-components/{component_id}`.



## OpenAPI

````yaml workflow-api/workflow-api.yaml get /workflow-components
openapi: 3.0.0
info:
  title: Workflow API
  version: 1.0.0
  description: API for managing workflows and their metadata
servers:
  - url: https://api.cloudcruise.com
    description: CloudCruise Platform Production API Server
security:
  - AuthScheme: []
paths:
  /workflow-components:
    get:
      summary: List workflow components
      description: >-
        Retrieves all workflow components in the workspace associated with your
        API key.


        Returns a summary view (id, name, audit fields). To get the full
        component definition including `component_data`, call `GET
        /workflow-components/{component_id}`.
      operationId: listWorkflowComponents
      parameters:
        - name: cc-key
          in: header
          required: false
          schema:
            type: string
          description: CloudCruise API key for authentication
      responses:
        '200':
          description: Successful operation
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/WorkflowComponent'
        '400':
          description: Bad request - Missing workspace ID
        '401':
          description: Unauthorized - Invalid or missing authentication
        '500':
          description: Internal server error
components:
  schemas:
    WorkflowComponent:
      type: object
      description: Summary record for a workflow component, returned by list operations.
      properties:
        id:
          type: string
          format: uuid
          description: Unique identifier for the component
        name:
          type: string
          description: Display name of the component (max 100 chars)
        created_by:
          type: string
          format: uuid
          description: ID of the user who created the component
        created_at:
          type: string
          format: date-time
          description: Timestamp when the component was created
        updated_at:
          type: string
          format: date-time
          description: Timestamp when the component or any of its versions was last updated
      required:
        - id
        - name
        - created_at
        - updated_at
  securitySchemes:
    AuthScheme:
      type: apiKey
      name: cc-key
      in: header
      description: >-
        API key-based authentication. Provide your CloudCruise API key in the
        cc-key header.

````