Robotic Process Automation Software
Write custom Node.js code and use any of the 400k+ npm packages available. Refer to the Pipedream Node docs to learn more.
Agenty API enables you to integrate Agenty account with your application to
automate the web scraping.
With Agenty API you can:
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
agenty: {
type: "app",
app: "agenty",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.agenty.com/v1/team`,
params: {
apikey: `${this.agenty.$auth.api_key}`,
},
})
},
})
// 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
},
})