Coinbase

Explore crypto like Bitcoin, Ethereum, and Dogecoin. Simply and securely buy, sell, and manage hundreds of cryptocurrencies.

Integrate the Coinbase API with the FreshBooks API

Setup the Coinbase API trigger to run a workflow which integrates with the FreshBooks API. Pipedream's integration platform allows you to integrate Coinbase and FreshBooks remarkably fast. Free for developers.

New Transactions from the Coinbase API

New Transactions. See the docs here

 
Try it
Place Buy Order with the Coinbase API

Places a buy order

 
Try it
Withdraw Funds with the Coinbase API

Withdraw funds

 
Try it

Overview of Coinbase

The Coinbase API allows you to build a variety of different applications,
including:

  • A cryptocurrency exchange
  • A digital wallet
  • A payment processor
  • A way to track cryptocurrency prices
  • A way to buy and sell cryptocurrency
  • A way to accept cryptocurrency payments

Connect Coinbase

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
import { axios } from "@pipedream/platform"
export default defineComponent({
  props: {
    coinbase: {
      type: "app",
      app: "coinbase",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://api.coinbase.com/v2/user`,
      headers: {
        Authorization: `Bearer ${this.coinbase.$auth.oauth_access_token}`,
        "CB-VERSION": "2021-11-16",
      },
    })
  },
})

Overview of FreshBooks

With the FreshBooks API, you can build applications that:

  • Create and manage invoices
  • Track payments
  • Manage clients
  • Generate reports
  • And more!

Connect FreshBooks

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: {
    freshbooks: {
      type: "app",
      app: "freshbooks",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://api.freshbooks.com/auth/api/v1/users/me`,
      headers: {
        Authorization: `Bearer ${this.freshbooks.$auth.oauth_access_token}`,
      },
    })
  },
})