with Handwrytten and ViewDNS.info?
Performs a DNS record lookup to retrieve various DNS record types for a domain. See the documentation
Retrieves the IP address history for a domain. See the documentation
Performs a reverse IP lookup to find domains hosted on the same IP address. See the documentation
Performs a reverse WHOIS search to find domains registered by the same person or organization. See the documentation
Discovers subdomains associated with a given domain. See the documentation
The Handwrytten API allows you to automate the sending of handwritten notes to clients, customers, or friends. Integrating this API within Pipedream workflows enables you to create personalized outreach at scale, triggered by various business events such as customer signups, purchases, or feedback. It's an innovative way to add a human touch to your communication strategy through technology.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
handwrytten: {
type: "app",
app: "handwrytten",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.handwrytten.com/v2/auth/getUser`,
headers: {
"Accept": `application/json`,
"Authorization": `${this.handwrytten.$auth.api_key}`,
},
})
},
})
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
viewdns_info: {
type: "app",
app: "viewdns_info",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.viewdns.info/ping/v2/`,
params: {
host: `pipedream.com`,
apikey: `${this.viewdns_info.$auth.api_key}`,
output: `json`,
},
})
},
})