What do you want to automate

with Covalent and Beaconchain?

Prompt, edit and deploy AI agents that connect to Covalent, Beaconchain and 2,500+ 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
Get Epoch with the Beaconchain API

Returns information for a specified epoch by the epoch number or an epoch tag (can be latest or finalized). See the documentation

 
Try it
Get Execution Blocks with the Beaconchain API

Retrieve execution blocks by execution block number. See the documentation

 
Try it
Get Slots with the Beaconchain API

Returns all slots for a specified epoch. See the documentation

 
Try it
Get Validators with the Beaconchain API

Returns information for all validators up to 100 by index or public key. See the documentation

 
Try it
Integrate the Covalent API with the Beaconchain API
Setup the Covalent API trigger to run a workflow which integrates with the Beaconchain API. Pipedream's integration platform allows you to integrate Covalent and Beaconchain remarkably fast. Free for developers.

Overview of Covalent

The Covalent API provides comprehensive blockchain data from multiple chains, enabling the retrieval of balances, transactions, and contract details with a simple API call. On Pipedream, you can harness this API to create powerful automations and workflows that respond to blockchain events, aggregate data for analysis, and integrate with other apps for a wide array of use cases, such as notifying users of transaction events or updating databases with the latest blockchain states.

Connect Covalent

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: {
    covalent: {
      type: "app",
      app: "covalent",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://api.covalenthq.com/v1/1/block_v2/5000000/`,
      auth: {
        username: `${this.covalent.$auth.api_key}`,
        password: ``,
      },
    })
  },
})

Connect Beaconchain

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: {
    beaconchain: {
      type: "app",
      app: "beaconchain",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `${this.beaconchain.$auth.url}/api/v1/slot/1`,
      headers: {
        "apikey": `${this.beaconchain.$auth.api_key}`,
      },
    })
  },
})

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