with Icypeas and Addressfinder?
Performs a search using a domain or company name as input. See the documentation
Validates an Australian address. See the documentation
Retrieves a result from a single search instance. See the documentation
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
icypeas: {
type: "app",
app: "icypeas",
}
},
async run({steps, $}) {
const data = {
"email": `${this.icypeas.$auth.email}`,
}
return await axios($, {
method: "post",
url: `https://app.icypeas.com/api/a/actions/subscription-information`,
headers: {
"Content-Type": `application/json`,
"Authorization": `${this.icypeas.$auth.api_key}`,
},
data,
})
},
})
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
addressfinder: {
type: "app",
app: "addressfinder",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.addressfinder.io/api/email/v1/verification/`,
headers: {
"Authorization": `${this.addressfinder.$auth.secret}`,
},
params: {
key: `${this.addressfinder.$auth.key}`,
email: `hello@addressfinder.com`,
format: `json`,
},
})
},
})