Website change detection, monitoring and alerting
VisualPing is a tool that lets you monitor web pages for changes. Using its API with Pipedream, you can automate reactions to those changes. For instance, you can set up workflows that notify you or your team when specific parts of a web page update, or use changes to trigger downstream actions in other apps. Pipedream's serverless platform enables you to connect VisualPing with a vast array of apps to create custom, automated workflows without writing a lot of code.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
visualping: {
type: "app",
app: "visualping",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://account.api.visualping.io/describe-user`,
headers: {
Authorization: `Bearer ${this.visualping.$auth.oauth_access_token}`,
},
})
},
})
Drata is a compliance automation platform. Drata’s platform is built by compliance and security experts so you don’t have to be one. With 75+ native integrations, you can easily connect your tech stack and automate evidence collection and testing.
Pipedream customers get 25% off Drata, with implementation fees waived. Visit https://drata.com/partner/pipedream for more information.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
drata: {
type: "app",
app: "drata",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://public-api.drata.com/public/controls`,
headers: {
Authorization: `Bearer ${this.drata.$auth.api_key}`,
},
})
},
})