with AeroLeads and Xverify?
AeroLeads API offers a robust solution for automating lead generation and prospecting activities. By leveraging this API on Pipedream, you can streamline the process of finding potential contacts, enriching their data, and syncing with your CRM or marketing tools. To maximize efficiency, you can set up workflows that react to specific triggers, process the data, and perform actions such as creating leads, updating contact lists, and sending personalized outreach emails.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
aeroleads: {
type: "app",
app: "aeroleads",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://aeroleads.com/apis/details`,
params: {
api_key: `${this.aeroleads.$auth.api_key}`,
first_name: `pushkar`,
last_name: `gaikwad`,
company_url: `inboundio.com`,
},
})
},
})
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
xverify: {
type: "app",
app: "xverify",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.xverify.com/v2/ev`,
params: {
api_key: `${this.xverify.$auth.api_key}`,
domain: `${this.xverify.$auth.domain}`,
email: `test@test.com`,
},
})
},
})