The Full Contact API lets you build a wide variety of applications, including:
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
full_contact: {
type: "app",
app: "full_contact",
}
},
async run({steps, $}) {
const data = {
"email": `jane.smith@gmail.com`,
}
return await axios($, {
method: "post",
url: `https://api.fullcontact.com/v3/person.enrich`,
headers: {
Authorization: `Bearer ${this.full_contact.$auth.api_key}`,
"Content-Type": `application/json`,
},
data,
})
},
})
FullContact uses API keys for authentication. When you connect your FullContact account, Pipedream securely stores the keys so you can easily authenticate to FullContact APIs in both code and no-code steps.
Generate an API Key here, and enter your API Key below. Please note that the API Key generated is only displayed once, so be sure to save it some place secure (e.g. password manager such as 1Password).