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`,
},
})
},
})
Validates an Australian address. See the documentation
Validates a New Zealand address. See the documentation
Addressfinder uses API keys for authentication. When you connect your Addressfinder account, Pipedream securely stores the keys so you can easily authenticate to Addressfinder APIs in both code and no-code steps.
To retrieve your API's Key and Secret,