How to use loop over items to realize each urls send to http node

Describe the problem/error/question

I have a workflow, and the output of the previous node is:

[
	{
		"read_more_link": "https://t.co/nBxtZHH3jF"
	},
	{
		"read_more_link": "https://t.co/dgHiaHBZvG"
	}
]

There are two pieces of data, each corresponding to a different URL. I want to use a Loop Over Item node to iteratively pass each URL to the next HTTP Request node to retrieve the corresponding webpage content. I designed the structure as shown in the diagram.

But only the first request is executed properly, and the subsequent ones are not processed. I’m not sure where the problem is in my design.

Please share your workflow

Information on your n8n setup

  • **n8n version:1.94.0
  • **Database (default: SQLite):sqlite
  • **n8n EXECUTIONS_PROCESS setting (default: own, main):own
  • **Running n8n via (Docker, npm, n8n cloud, desktop app):npm
  • **Operating system:MacOS M1

Hi there

you need to put the HTTP Request node before the loop over items node

not after


something like this

Thank you, bro! You solved my problem. Have a nice day~