The source of the truth for person data
The Company Enrichment API provides a one-to-one match, retrieving up-to-date information on a unique company. See the docs here
Adds a contact to a specific static list. See the documentation
The Person Enrichment API provides a one-to-one match, retrieving up-to-date information on a unique individual. See the docs here
Create or update a batch of contacts by its ID or email. See the documentation
Find specific segments of people that you need to power your projects and products. See the docs here
The People Data Labs API provides access to a rich database of profiles, offering granular data on individuals such as employment history, education, skills, and more. Leveraging Pipedream's capabilities, you can automate personalized outreach, enrich contact lists, validate professional information, and sync data across platforms in real-time. These automations can power recruitment, sales, and networking efforts by providing up-to-date and comprehensive data points.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
people_data_labs: {
type: "app",
app: "people_data_labs",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.peopledatalabs.com/v5/person/enrich`,
params: {
api_key: `${this.people_data_labs.$auth.api_key}`,
email: `sean@peopledatalabs.com`,
},
})
},
})
The HubSpot API enables developers to integrate into HubSpots CRM, CMS, Conversations, and other features. It allows for automated management of contacts, companies, deals, and marketing campaigns, enabling custom workflows, data synchronization, and task automation. This streamlines operations and boosts customer engagement, with real-time updates for rapid response to market changes.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
hubspot: {
type: "app",
app: "hubspot",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.hubapi.com/integrations/v1/me`,
headers: {
Authorization: `Bearer ${this.hubspot.$auth.oauth_access_token}`,
},
})
},
})