Clearbit provides APIs that allow you to retrieve information about companies and people. This information can be used to build applications that perform functions such as identifying potential customers, conducting due diligence, or fraud prevention.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
clearbit: {
type: "app",
app: "clearbit",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://person.clearbit.com/v1/people/email/alex@alexmaccaw.com`,
headers: {
Authorization: `Bearer ${this.clearbit.$auth.secret_api_key}`,
},
})
},
})
The Company Name to Domain action lets you convert the exact name of a company to a website domain, and a logo. See the docs here.
The Company API allows you to look up a company by their domain. See the docs here.
This endpoint retrieves a person by email address. See the docs here
Clearbit uses API keys for authentication. When you connect your Clearbit account, Pipedream securely stores the keys so you can easily authenticate to Clearbit APIs in both code and no-code steps.
Copy your "secret API key" from your Clearbit account here and paste it below.