Using UptimeRobot API, you can build various tools and automation for server monitoring, memory and performance tracking, and more. With fewer resources, you can streamline the process of gathering insights to quickly identify potential problems—freeing up more time to focus on delivering an optimal service.
The UptimeRobot API can help you:
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
uptimerobot: {
type: "app",
app: "uptimerobot",
}
},
async run({steps, $}) {
const data = {
"api_key": `${this.uptimerobot.$auth.api_key}`,
}
return await axios($, {
method: "post",
url: `https://api.uptimerobot.com/v2/getAccountDetails`,
data,
})
},
})
UptimeRobot uses API keys for authentication. When you connect your UptimeRobot account, Pipedream securely stores the keys so you can easily authenticate to UptimeRobot APIs in both code and no-code steps.
To retrieve your API keys,