Instructs the AI agent to navigate to one or more URLs provided by a preceding block like Find Links or Extract Data.
Follow links
block is a fundamental navigation tool that tells the AI agent to visit a URL or a list of URLs. Finding links with a block like Find Links
is not enough; you must use this block immediately after to explicitly instruct the agent to go to those links.
This block acts as the bridge between finding a path and actually walking down it.
Follow links on a page
block to:
Find Links
block.Extract Data
block.{{variable_name}}
that contains a URL.The Follow links block configuration panel.
Find Links
(Most Common)Find Links
: You first use Find Links
to identify all the relevant <a>
tag links on a page (e.g., all product links from a category page).Follow links
: You immediately add this block next. By selecting Follow each link
, you tell the agent to visit every single URL that was just found.Extract Data
: After this, you add an Extract Data
block to scrape information from each of the detail pages the agent visits.Extract Data
<a>
tag but is extracted as text from the page.
Extract Data
: Your first extraction step scrapes a piece of data and saves it to a variable with the specific key URL
.Follow links
: You add this block next. The agent will recognize the URL
key from the previous step and navigate to the link contained in its value.Find Links
or Extract Data
.Follow each link
is selected, it creates a loop. All subsequent blocks will be executed for every single link in the list.Follow links that have not been seen before
option is extremely useful for building monitoring automations that run on a schedule and should only process new content.Follow links
block is the essential engine for moving your agent from a list of possibilities to the actual pages you want to work on.