Back to Integrations
integrationHTTP Request node
integrationUptimeRobot node

HTTP Request and UptimeRobot integration

Save yourself the work of writing custom integrations for HTTP Request and UptimeRobot and use n8n instead. Build adaptable and scalable Development, and Core Nodes workflows that work with your technology stack. All within a building experience you will love.

How to connect HTTP Request and UptimeRobot

  • Step 1: Create a new workflow
  • Step 2: Add and configure nodes
  • Step 3: Connect
  • Step 4: Customize and extend your integration
  • Step 5: Test and activate your workflow

Step 1: Create a new workflow and add the first step

In n8n, click the "Add workflow" button in the Workflows tab to create a new workflow. Add the starting point – a trigger on when your workflow should run: an app event, a schedule, a webhook call, another workflow, an AI chat, or a manual trigger. Sometimes, the HTTP Request node might already serve as your starting point.

HTTP Request and UptimeRobot integration: Create a new workflow and add the first step

Step 2: Add and configure HTTP Request and UptimeRobot nodes

You can find HTTP Request and UptimeRobot in the nodes panel. Drag them onto your workflow canvas, selecting their actions. Click each node, choose a credential, and authenticate to grant n8n access. Configure HTTP Request and UptimeRobot nodes one by one: input data on the left, parameters in the middle, and output data on the right.

HTTP Request and UptimeRobot integration: Add and configure HTTP Request and UptimeRobot nodes

Step 3: Connect HTTP Request and UptimeRobot

A connection establishes a link between HTTP Request and UptimeRobot (or vice versa) to route data through the workflow. Data flows from the output of one node to the input of another. You can have single or multiple connections for each node.

HTTP Request and UptimeRobot integration: Connect HTTP Request and UptimeRobot

Step 4: Customize and extend your HTTP Request and UptimeRobot integration

Use n8n's core nodes such as If, Split Out, Merge, and others to transform and manipulate data. Write custom JavaScript or Python in the Code node and run it as a step in your workflow. Connect HTTP Request and UptimeRobot with any of n8n’s 1000+ integrations, and incorporate advanced AI logic into your workflows.

HTTP Request and UptimeRobot integration: Customize and extend your HTTP Request and UptimeRobot integration

Step 5: Test and activate your HTTP Request and UptimeRobot workflow

Save and run the workflow to see if everything works as expected. Based on your configuration, data should flow from HTTP Request to UptimeRobot or vice versa. Easily debug your workflow: you can check past executions to isolate and fix the mistake. Once you've tested everything, make sure to save your workflow and activate it.

HTTP Request and UptimeRobot integration: Test and activate your HTTP Request and UptimeRobot workflow

Website downtime alert via LINE + Supabase log

This workflow automatically checks the status of your websites using UptimeRobot API. If any site is down or unstable, it will:
Generate a natural-language alert message using GPT-4o
Push the message to a LINE group (with funny IT-style encouragement)
Log all DOWN status entries into your Supabase database
Wait 30 minutes before repeating

🔧 How It Works
Schedule Trigger – Runs on a fixed interval (every few minutes).
UptimeRobot Node – Fetches website monitor data.
Code Node (Filter) – Filters only websites with status 8 (may be down) or 9 (down).
IF Node – If any site is down, proceed.
LangChain LLM Node – Formats alert with a humorous message using GPT-4o.
Line Notify (HTTP Request) – Sends the alert to your LINE group.
Loop Over Items – Loops through all monitors.
Filter Down (Status = 9) – Selects only “fully down” sites.
Supabase Node – Logs these into synlora_uptime_down table.
Wait Node – Delays next alert by 30 minutes to avoid spamming.

⚙️ Setup Steps

Required:
🔗 UptimeRobot API Key
📲 LINE Channel Access Token and Group ID
🧠 OpenAI Key (GPT-4o Mini)
🗃️ Supabase Project & Table

Step-by-step:
Go to UptimeRobot → Get API key and ensure monitors are set up.
Create a Supabase table with fields: website, status, uptime_id.
Create a LINE Messaging API bot, join it to your group, and get:
Access Token
Group ID (userId or groupId)
Add your OpenAI API Key for GPT-4o Mini (or switch to your preferred LLM).
Import the workflow JSON into n8n.
Set credentials in all necessary nodes.
Activate the workflow.

Nodes used in this workflow

Popular HTTP Request and UptimeRobot workflows

UptimeRobot Alerts to Telegram with Visual Verification

UptimeRobot Alerts to Telegram with Visual Verification Automatically sends Telegram notifications with optional screenshots when monitors change status (✅ UP/🔴 DOWN/⏸️ PAUSED) Example Message in Telegram: Who Is This For? Teams or individuals needing to: Get alerts when websites/services go down Verify outages with visual screenshots Monitor infrastructure from Telegram What Does This Workflow Solve? 🚨 Missed Alerts: Get immediate notifications in Telegram 🖼️ Visual Verification: Optional screenshot confirmation of outages 📊 Status Tracking: Clear records of when issues began/resolved 🔗 One-Click Access: Direct links to affected monitors ⏱️ Time Savings: No need to check dashboards manually Setup Guide Pre-Requisites UptimeRobot Account**: With at least one monitor configured Gmail Account**: To receive alert notifications Telegram Account**: To receive alerts (mobile/desktop app recommended) (Optional) ScreenshotMachine free/paid account Credentials Setup Make sure your n8n instance is connected with: Gmail Account** (via OAuth2) UptimeRobot API** (via API key) Telegram Bot** (via bot token) (Optional) ScreenshotMachine (via customer key) Configure Your n8n Workflow Nodes Alert Trigger Gmail Trigger**: Configure to watch for emails from [email protected] Set appropriate polling interval (e.g., every 5 minutes) Monitor Configuration Conf Node**: Set your preferences: { "take_screenshot": true, "screenshotmachine_secret": "your-secret-here", "screenshotmachine_device": "desktop", "screenshotmachine_dimension": "1366xfull", "screenshotmachine_format": "png" } Notification Settings Telegram Nodes**: Set your Chat ID (find with @getidsbot) Customize message formatting if needed Service-Specific Setup UptimeRobot: Go to Dashboard → My Settings → API Settings Create API key with "Monitor Read" permissions Enable email alerts in monitor settings Telegram Bot: Message @BotFather to create new bot Get your Chat ID using @getidsbot Add bot token to n8n credentials ScreenshotMachine (Optional): Sign up at screenshotmachine.com Get Customer Key from account dashboard Set your secret phrase if using hash verification Final Steps Test your workflow by manually triggering a monitor status change Verify Telegram notifications arrive as expected Check screenshot quality if enabled Monitor for a few days to fine-tune alert preferences Happy Monitoring!

Website Downtime Alert via LINE + Supabase Log

This workflow automatically checks the status of your websites using UptimeRobot API. If any site is down or unstable, it will: Generate a natural-language alert message using GPT-4o Push the message to a LINE group (with funny IT-style encouragement) Log all DOWN status entries into your Supabase database Wait 30 minutes before repeating 🔧 How It Works Schedule Trigger – Runs on a fixed interval (every few minutes). UptimeRobot Node – Fetches website monitor data. Code Node (Filter) – Filters only websites with status 8 (may be down) or 9 (down). IF Node – If any site is down, proceed. LangChain LLM Node – Formats alert with a humorous message using GPT-4o. Line Notify (HTTP Request) – Sends the alert to your LINE group. Loop Over Items – Loops through all monitors. Filter Down (Status = 9) – Selects only “fully down” sites. Supabase Node – Logs these into synlora_uptime_down table. Wait Node – Delays next alert by 30 minutes to avoid spamming. ⚙️ Setup Steps Required: 🔗 UptimeRobot API Key 📲 LINE Channel Access Token and Group ID 🧠 OpenAI Key (GPT-4o Mini) 🗃️ Supabase Project & Table Step-by-step: Go to UptimeRobot → Get API key and ensure monitors are set up. Create a Supabase table with fields: website, status, uptime_id. Create a LINE Messaging API bot, join it to your group, and get: Access Token Group ID (userId or groupId) Add your OpenAI API Key for GPT-4o Mini (or switch to your preferred LLM). Import the workflow JSON into n8n. Set credentials in all necessary nodes. Activate the workflow.

Build your own HTTP Request and UptimeRobot integration

Create custom HTTP Request and UptimeRobot workflows by choosing triggers and actions. Nodes come with global operations and settings, as well as app-specific parameters that can be configured. You can also use the HTTP Request node to query data from any app or service with a REST API.

UptimeRobot supported actions

Get
Get account details
Create
Create an alert contact
Delete
Delete an alert contact
Get
Get an alert contact
Get Many
Get many alert contacts
Update
Update an alert contact
Create
Create a maintenance window
Delete
Delete a maintenance window
Get
Get a maintenance window
Get Many
Get many a maintenance windows
Update
Update a maintenance window
Create
Create a monitor
Delete
Delete a monitor
Get
Get a monitor
Get Many
Get many monitors
Reset
Reset a monitor
Update
Update a monitor
Create
Create a public status page
Delete
Delete a public status page
Get
Get a public status page
Get Many
Get many public status pages
Use case

Save engineering resources

Reduce time spent on customer integrations, engineer faster POCs, keep your customer-specific functionality separate from product all without having to code.

Learn more

FAQs

  • Can HTTP Request connect with UptimeRobot?

  • Can I use HTTP Request’s API with n8n?

  • Can I use UptimeRobot’s API with n8n?

  • Is n8n secure for integrating HTTP Request and UptimeRobot?

  • How to get started with HTTP Request and UptimeRobot integration in n8n.io?

Need help setting up your HTTP Request and UptimeRobot integration?

Discover our latest community's recommendations and join the discussions about HTTP Request and UptimeRobot integration.
Moiz Contractor
theo
Jon
Dan Burykin
Tony

Looking to integrate HTTP Request and UptimeRobot in your company?

Over 3000 companies switch to n8n every single week

Why use n8n to integrate HTTP Request with UptimeRobot

Build complex workflows, really fast

Build complex workflows, really fast

Handle branching, merging and iteration easily.
Pause your workflow to wait for external events.

Code when you need it, UI when you don't

Simple debugging

Your data is displayed alongside your settings, making edge cases easy to track down.

Use templates to get started fast

Use 1000+ workflow templates available from our core team and our community.

Reuse your work

Copy and paste, easily import and export workflows.

Implement complex processes faster with n8n

red iconyellow iconred iconyellow icon