Some things you can build using the Apollo.io API include:
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
apollo_io: {
type: "app",
app: "apollo_io",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.apollo.io/v1/users/search`,
headers: {
"Cache-Control": `no-cache`,
"Content-Type": `application/json`,
},
params: {
api_key: `${this.apollo_io.$auth.api_key}`,
},
})
},
})
Enriches a person's information, the more information you pass in, the more likely we can find a match. See the documentation
Apollo.io uses API keys for authentication. When you connect your Apollo.io account, Pipedream securely stores the keys so you can easily authenticate to Apollo.io APIs in both code and no-code steps.
You can get your API Key at the API Settings page of your Apollo.io account.