Define the starting URLs for your AI Agent to visit.
Open Websites
block is typically the first active step in many workflows. It tells your AI Agent which web pages to navigate to initially. The subsequent blocks in your workflow will then operate on these opened pages.
Open Websites
block to:
{{page}}
as a placeholder for the page number (e.g., https://example.com/news?page={{page}}
)....page=1
, ...page=2
, …, ...page=10
).Open datasets
block):
Open datasets
block earlier in your workflow, you can use those variables to construct dynamic URLs.{{website_url}}
contains just the domain (e.g., jsonify.com
or jsonify.com/news
), you should structure the input in the URL field like this: https://{{website_url}}
.{{ticker}}
and {{slug}}
, your URL might look like: https://financialsite.com/stocks/{{ticker}}/{{slug}}/details
. The workflow will generate a URL for each row in your Open datasets
table.Screenshot: Open Websites block configuration showing a list of URLs
https://jsonify.com
https://competitorA.com
https://competitorB.com
https://competitorC.com
https://searchengine.com/results?query=ai&page={{page}}
Open datasets
block with a column company_domain
containing values like jsonify.com
or google.com
.Open Websites
block URL: https://{{company_domain}}
Open datasets
has rows for jsonify.com
and google.com
, the agent will open https://jsonify.com
and https://google.com
.Follow Links
block immediately after Open Websites
for these initial URLs; the agent inherently “follows” them by opening them.