With the Mailrefine API you can:
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
mailrefine: {
type: "app",
app: "mailrefine",
}
},
async run({steps, $}) {
const data = {
"email": `your_email_here`,
}
return await axios($, {
method: "post",
url: `https://app.mailrefine.com/api/v1/single-email-verify`,
params: {
api_token: `${this.mailrefine.$auth.api_key}`,
},
data,
})
},
})
Mailrefine uses API keys for authentication. When you connect your Mailrefine account, Pipedream securely stores the keys so you can easily authenticate to Mailrefine APIs in both code and no-code steps.
To retrieve your API key,