CoinMarketCal

The most trusted crypto events database in the industry.

Integrate the CoinMarketCal API with the Supabase API

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

Delete Row with Supabase API on New Event Added from CoinMarketCal API
CoinMarketCal + Supabase
 
Try it
Insert Row with Supabase API on New Event Added from CoinMarketCal API
CoinMarketCal + Supabase
 
Try it
List Categories with CoinMarketCal API on New Row Added from Supabase API
Supabase + CoinMarketCal
 
Try it
List Categories with CoinMarketCal API on New Webhook Event (Instant) from Supabase API
Supabase + CoinMarketCal
 
Try it
List Coins with CoinMarketCal API on New Row Added from Supabase API
Supabase + CoinMarketCal
 
Try it
New Event Added from the CoinMarketCal API

Emit new event when a new event is created.

 
Try it
New Row Added from the Supabase API

Emit new event for every new row added in a table. See documentation here

 
Try it
New Webhook Event (Instant) from the Supabase API

Emit new event for every insert, update, or delete operation in a table. This source requires user configuration using the Supabase website. More information in the README. Also see documentation here

 
Try it
List Categories with the CoinMarketCal API

Obtain a list of all available event categories in CoinMarketCal. See the docs here

 
Try it
Delete Row with the Supabase API

Deletes row(s) in a database. See the docs here

 
Try it
List Coins with the CoinMarketCal API

Obtain a list of all available coins in CoinMarketCal. See the docs here

 
Try it
Insert Row with the Supabase API

Inserts a new row into a database. See the docs here

 
Try it
Search Events with the CoinMarketCal API

Retrieve a list of events based on specified filters. See the docs here

 
Try it

Overview of CoinMarketCal

CoinMarketCal API delivers information on cryptocurrency events. It can serve as a critical data source for market sentiment analysis, trading, and investment strategies. With Pipedream, you can trigger workflows based on this data, process and analyze it, or connect it to other services to create comprehensive crypto market tools.

Connect CoinMarketCal

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: {
    coinmarketcal: {
      type: "app",
      app: "coinmarketcal",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://developers.coinmarketcal.com/v1/events`,
      headers: {
        "x-api-key": `${this.coinmarketcal.$auth.api_key}`,
      },
    })
  },
})

Overview of Supabase

Supabase is a real-time backend-as-a-service that provides developers with a suite of tools to quickly build and scale their applications. It offers database storage, authentication, instant APIs, and real-time subscriptions. With the Supabase API, you can perform CRUD operations on your database, manage users, and listen to database changes in real time. When integrated with Pipedream, you can automate workflows that react to these database events, synchronize data across multiple services, or streamline user management processes.

Connect Supabase

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: {
    supabase: {
      type: "app",
      app: "supabase",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://${this.supabase.$auth.subdomain}.supabase.co/rest/v1/`,
      headers: {
        Authorization: `Bearer ${this.supabase.$auth.service_key}`,
        "apikey": `${this.supabase.$auth.service_key}`,
      },
    })
  },
})