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}`,
},
})
},
})
Agenty uses API keys for authentication. When you connect your Agenty account, Pipedream securely stores the keys so you can easily authenticate to Agenty APIs in both code and no-code steps.
Once you are logged in, go to the Settings page and then API keys page to get your API key token to start using the API.