StackShare enables you to uncover the tech stacks behind 1.5M companies and counting.
Go to siteThe 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,
})
},
})
Tech Stack Updates to Slack: Automatically send updates to a Slack channel when a company adds a new tool to their tech stack on StackShare. This can be valuable for sales or competitive analysis teams who need to stay informed about prospective clients' technology choices.
Sync Tool Info with Airtable: Maintain an Airtable base with detailed records of tools and services. Set up a Pipedream workflow that periodically fetches updates from StackShare and syncs this information into Airtable, keeping the database current for market research or internal use.
Trigger Emails Based on Stack Changes: Monitor specific companies' tech stacks for changes and trigger email alerts through SendGrid when a new tool is added or removed. This could be useful for marketing teams to tailor their outreach or for product teams to track adoption of their tools in the market.
StackShare uses API keys for authentication. When you connect your StackShare account, Pipedream securely stores the keys so you can easily authenticate to StackShare APIs in both code and no-code steps.
Sign in and copy your API key from the StackShare API webpage.