with npm and ContactOut?
Emit new event with the latest count of downloads for an npm package. See the documentation
Emit new event when a new version of an npm package is published. See the documentation
Get company profiles matching the search criteria. See the documentation
Get profiles of key decision makers within a specified company. See the documentation
Find LinkedIn profile from email address. See the documentation
Get profile details for a LinkedIn profile using either a LinkedIn URL or email address. See the documentation
Get company information from domain names. See the documentation
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
contactout: {
type: "app",
app: "contactout",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.contactout.com/v1/stats`,
headers: {
"token": `${this.contactout.$auth.api_key}`,
},
params: {
period: `2025-06`,
},
})
},
})