Fivetran

Fivetran is the leader in modern data movement. Fast-moving startups & the world’s largest companies use Fivetran to improve operations & accelerate analytics.

Go to site
Explore
/
Apps
/
Fivetran

Fivetran API Integrations

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

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
import { axios } from "@pipedream/platform"
export default defineComponent({
  props: {
    fivetran: {
      type: "app",
      app: "fivetran",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://api.fivetran.com/v1/users`,
      headers: {
        "Content-Type": `application/json`,
      },
      auth: {
        username: `${this.fivetran.$auth.api_key}`,
        password: `${this.fivetran.$auth.api_secret}`,
      },
    })
  },
})

Authentication

Fivetran uses API keys for authentication. When you connect your Fivetran account, Pipedream securely stores the keys so you can easily authenticate to Fivetran APIs in both code and no-code steps.

To retrieve your API keys,

  • Navigate to your Fivetran account and sign in
  • Click the top left dropdown menu
  • Go to “Manage Settings” > “Settings” > “API Config”