The HTTP Request node is the bridge between your browser and the outside world. It allows your workflow to “talk” to other apps, databases, or AI services that have a web address (API).
This node is incredibly versatile. You will mostly use it when you want your workflow to interact with tools outside of the web page you are currently viewing.
Connect to AI
Send text you found on a page to ChatGPT or Claude to summarize it or
analyze the sentiment.
Save to Databases
Send scraped product info or contact details directly to your own database
or a Google Sheet.
Trigger Alerts
Send a message to Slack or Discord when a specific price drops or an element
changes on a page.
URL (Address): The web link provided by the service you want to connect to.
Method (Action):
GET: Use this when you want to pull information from a service.
POST: Use this when you want to send information (like text you just scraped) to a service.
Body: This is where you put the data you want to send. You can insert values from previous nodes (for example Get Selected Text) by clicking the plus icon next to the field.
Connection Blocked (CORS): Some websites are very strict and don’t allow “outside” requests. If you see a CORS error, you might need to use a service that is specifically designed to work with browser extensions.
Wrong Address: Double-check your URL. Even a missing / at the end can sometimes cause a request to fail.