import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
enrichley: {
type: "app",
app: "enrichley",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.enrichley.io/api/v1/me`,
headers: {
"accept": `application/json`,
"X-API-Key": `${this.enrichley.$auth.api_key}`,
},
})
},
})
Checks the validity of a single email address using Enrichley. See the documentation
Enrichley uses API keys for authentication. When you connect your Enrichley account, Pipedream securely stores the keys so you can easily authenticate to Enrichley APIs in both code and no-code steps.