with npm and Prospeo?
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
Extract data from any LinkedIn profile in real-time, as well as all the data from the company page, and also find a valid verified email from the lead. See the documentation
Discover mobile numbers associated with a LinkedIn profile URL. See the documentation
Discover email addresses associated with a domain name, website, or company name. See the documentation
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
prospeo: {
type: "app",
app: "prospeo",
}
},
async run({steps, $}) {
return await axios($, {
method: "post",
url: `https://api.prospeo.io/account-information`,
headers: {
"x-key": `${this.prospeo.$auth.api_key}`,
},
})
},
})