with Clearout and Screenshot API?
The Clearout API enables real-time email verification and cleaning to boost the deliverability of your emails. Integrated within Pipedream, it offers a serverless workflow for automating email list maintenance, validation processes, and enhances email marketing efficiency. With it, you can programmatically verify individual addresses or bulk lists, identify disposable emails, and detect invalid domains, creating a reliable foundation for your communication strategies.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
clearout: {
type: "app",
app: "clearout",
}
},
async run({steps, $}) {
const data = {
"domain": `pipedream.com`,
}
return await axios($, {
method: "post",
url: `https://api.clearout.io/v2/domain/resolve/whois`,
headers: {
Authorization: `Bearer ${this.clearout.$auth.api_token}`,
"Content-Type": `application/json`,
},
data,
})
},
})
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
screenshot_api: {
type: "app",
app: "screenshot_api",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://shot.screenshotapi.net/v3/screenshot`,
params: {
token: `${this.screenshot_api.$auth.api_key}`,
url: `https://google.com`,
output: `JSON`,
},
})
},
})