StackShare enables you to uncover the tech stacks behind 1.5M companies and counting.
Emit new event when a specified property is provided or updated on a company. See the documentation
Emit new event when a specified property is provided or updated on a contact. See the documentation
Emit new event when a specified property is provided or updated on a custom object.
Adds a contact to a specific static list. See the documentation
Create or update a batch of contacts by its ID or email. See the documentation
Create a WhatsApp, LinkedIn, or SMS message. See the documentation
The StackShare API allows you to tap into a comprehensive directory of software tools and cloud infrastructure services. With this API, you can fetch details about different tech stacks, tools, and services used by companies. On Pipedream, you can leverage this API to automate workflows, integrate with other apps, and enrich your datasets with tech stack information. For instance, you could trigger workflows based on new tool releases, compare stacks across companies, or update your CRM with the latest tech used by your prospects.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
stackshare_api: {
type: "app",
app: "stackshare_api",
}
},
async run({steps, $}) {
const data = {
"query": `{
enrichment(domain: "airbnb.com"){
domain
companyId
companyName
companyTools {
count
pageInfo {
hasNextPage
endCursor
}
edges {
node {
tool{
id
name
}
sourcesSummary
sources
}
}
}
}
}`,
}
return await axios($, {
method: "post",
url: `https://api.stackshare.io/graphql`,
headers: {
"x-api-key": `${this.stackshare_api.$auth.api_key}`,
},
data,
})
},
})
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}`,
},
})
},
})