Skip to content

Loop Over Items#

The Loop Over Items node helps you loop through data.

The node saves the original incoming data, and with each iteration, returns a predefined amount of data through the loop output.

When the node execution completes, it combines all the data and returns it through the done output.

Node parameters#

Batch Size#

Enter the number of items to return with each call.

Node options#

Reset#

If turned on, the node will reset with the current input-data newly initialized with each loop.

Check if you need this node

n8n automatically processes incoming items. You may not need the Loop Over Items node in your workflow. To learn more about how n8n handles multiple items, refer to the documentation on Looping in n8n.

Templates and examples#

Back Up Your n8n Workflows To Github

by Jonathan

View template details
OpenAI GPT-3: Company Enrichment from website content

by Lucas Perret

View template details
Scrape and store data from multiple website pages

by Miquel Colomer

View template details
Browse Loop Over Items (Split in Batches) integration templates, or search all templates

Read RSS feed from two different sources#

This workflow allows you to read an RSS feed from two different sources using the Loop Over Items node. You need the Loop Over Items node in the workflow as the RSS Feed Read node only processes the first item it receives. You can also find the workflow on n8n.io.

The example walks through building the workflow, but assumes you are already familiar with n8n. To build your first workflow, including learning how to add nodes to a workflow, refer to Try it out.

The final workflow looks like this:

A workflow with the Loop Over Items node

  1. Add the manual trigger.
  2. Add the Code node.
  3. Copy this code into the Code node:
     1
     2
     3
     4
     5
     6
     7
     8
     9
    10
    11
    12
    return [
    	{
    		json: {
    			url: 'https://medium.com/feed/n8n-io',
    		}
    	},
    	{
    		json: {
    			url: 'https://dev.to/feed/n8n',
    		}
    	}
    ];
    
  4. Add the Loop Over Items node.
  5. Configure Loop Over Items: set the batch size to 1 in the Batch Size field.
  6. Add the RSS Feed Read node.
  7. Select Test Workflow. This runs the workflow to load data into the RSS Feed Read node.
  8. Configure RSS Feed Read: map url from the input to the URL field. You can do this by dragging and dropping from the INPUT panel, or using this expression: {{ $json.url }}.
  9. Select Test Workflow to run the workflow and see the resulting data.

Check that the node has processed all items#

To check if the node still has items to process, use the following expression: {{$node["Loop Over Items"].context["noItemsLeft"]}}. This expression returns a boolean value. If the node still has data to process, the expression returns false, otherwise it returns true.

Get the current running index of the node#

To get the current running index of the node, use the following expression: {{$node["Loop Over Items"].context["currentRunIndex"];}}.