Leadfeeder is the #1-rated app for Google Analytics and it's the best way to generate free sales leads.
Write custom Node.js code and use any of the 400k+ npm packages available. Refer to the Pipedream Node docs to learn more.
Leadfeeder is a powerful API that allows you to build a variety of applications
and tools. Here are some examples of what you can build with the Leadfeeder
API:
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
leadfeeder: {
type: "app",
app: "leadfeeder",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.leadfeeder.com/accounts`,
headers: {
"Authorization": `Token ${this.leadfeeder.$auth.api_token}`,
},
})
},
})
// To use previous step data, pass the `steps` object to the run() function
export default defineComponent({
async run({ steps, $ }) {
// Return data to use it in future steps
return steps.trigger.event
},
})