What do you want to automate

with Coinbase Developer Platform and Click & Sign?

Prompt, edit and deploy AI agents that connect to Coinbase Developer Platform, Click & Sign and 2,900+ other apps in seconds.

Trusted by 1,000,000+ developers from startups to Fortune 500 companies

Adyen logo
Appcues logo
Bandwidth logo
Checkr logo
ChartMogul logo
Dataminr logo
Gopuff logo
Gorgias logo
LinkedIn logo
Logitech logo
Replicated logo
Rudderstack logo
SAS logo
Scale AI logo
Webflow logo
Warner Bros. logo
Adyen logo
Appcues logo
Bandwidth logo
Checkr logo
ChartMogul logo
Dataminr logo
Gopuff logo
Gorgias logo
LinkedIn logo
Logitech logo
Replicated logo
Rudderstack logo
SAS logo
Scale AI logo
Webflow logo
Warner Bros. logo
New Wallet Event (Instant) from the Coinbase Developer Platform API

Emit new event for each new wallet event. See the documentation

 
Try it
Integrate the Coinbase Developer Platform API with the Click & Sign API
Setup the Coinbase Developer Platform API trigger to run a workflow which integrates with the Click & Sign API. Pipedream's integration platform allows you to integrate Coinbase Developer Platform and Click & Sign remarkably fast. Free for developers.

Connect Coinbase Developer Platform

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
import { Coinbase, Wallet } from "@coinbase/coinbase-sdk";

export default defineComponent({
  props: {
    coinbase_developer_platform: {
      type: "app",
      app: "coinbase_developer_platform",
    }
  },
  async run({ steps, $ }) {
    const apiKeyName = this.coinbase_developer_platform.$auth.api_key_id;
    const privateKey = this.coinbase_developer_platform.$auth.secret_key
    Coinbase.configure({ apiKeyName: apiKeyName, privateKey: privateKey });
    return Wallet.listWallets();
  },
})

Connect Click & Sign

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
import { axios } from "@pipedream/platform"
export default defineComponent({
  props: {
    click_sign: {
      type: "app",
      app: "click_sign",
    }
  },
  async run({steps, $}) {
    const data = {
      "request": `GET_CONFIG_LIST`,
      "user": `${this.click_sign.$auth.username}`,
    }
    return await axios($, {
      method: "post",
      url: `https://api.lleida.net/cs/v1/get_config_list`,
      headers: {
        "authorization": `x-api-key ${this.click_sign.$auth.api_key}`,
      },
      data,
    })
  },
})

Trusted by 1,000,000+ developers from startups to Fortune 500 companies

Adyen logo
Appcues logo
Bandwidth logo
Checkr logo
ChartMogul logo
Dataminr logo
Gopuff logo
Gorgias logo
LinkedIn logo
Logitech logo
Replicated logo
Rudderstack logo
SAS logo
Scale AI logo
Webflow logo
Warner Bros. logo
Adyen logo
Appcues logo
Bandwidth logo
Checkr logo
ChartMogul logo
Dataminr logo
Gopuff logo
Gorgias logo
LinkedIn logo
Logitech logo
Replicated logo
Rudderstack logo
SAS logo
Scale AI logo
Webflow logo
Warner Bros. logo