with npm and FinalScout?
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
Finds an email address from a LinkedIn profile URL. See the documentation
Finds an email address from a news article URL. See the documentation
Finds an email address from a person's name and company/domain. See the documentation
Get the task status for any Single Find task. See the documentation
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
finalscout: {
type: "app",
app: "finalscout",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.finalscout.com/v1/account`,
headers: {
"authorization": `${this.finalscout.$auth.api_key}`,
},
})
},
})