Agenty

Robotic Process Automation Software

Go to site
Explore
/
Apps
/
Agenty

Agenty API Integrations

Build and run workflows using the Agenty API. Use 1000s of source-available triggers and actions across 1000+ apps. Or write custom code to integrate any app or API in seconds.

Overview

Agenty API enables you to integrate Agenty account with your application to automate the web scraping.

With Agenty API you can:

  • Automate web scraping jobs
  • Schedule scraping jobs
  • Get data in JSON or CSV format
  • Get data from behind a login
  • And much more!
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
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}`,
      },
    })
  },
})

Authentication

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.