Skip to content

Loop Block

Iterate over arrays or repeat actions a specific number of times.

Loop Types

For Each

Iterate over each item in an array.

Repeat

Repeat a fixed number of times.

Example

Input: ["apple", "banana", "cherry"]
Loop: For each item
  -> Process item
Output: Processed results

AI Workflow Editor