CoinMarketCap

CoinMarketCap is a website that provides cryptocurrency market cap rankings, charts, and more.

Integrate the CoinMarketCap API with the Data Stores API

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

Get Cryptocurrency Metadata with the CoinMarketCap API

Returns all static metadata available for one or more cryptocurrencies. See the documentation

 
Try it
Add or update a single record with the Data Stores API

Add or update a single record in your Pipedream Data Store.

 
Try it
Get ID Map (V1) with the CoinMarketCap API

Returns a mapping of all cryptocurrencies to unique CoinMarketCap ids. See the documentation

 
Try it
Add or update multiple records with the Data Stores API

Add or update multiple records to your Pipedream Data Store.

 
Try it
Get Latest Listings with the CoinMarketCap API

Returns a paginated list of all active cryptocurrencies with latest market data. See the documentation

 
Try it

Overview of CoinMarketCap

With the CoinMarketCap API, you can:

  • Get the latest prices for all cryptocurrencies
  • Get the 24-hour volume for all cryptocurrencies
  • Get the market capitalization for all cryptocurrencies
  • Get the list of all cryptocurrencies

Here are some examples of what you can build with the CoinMarketCap API:

  • A cryptocurrency price tracker
  • A cryptocurrency trading bot
  • A cryptocurrency portfolio manager
  • A cryptocurrency news site

Connect CoinMarketCap

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

Overview of Data Stores

With the Data Stores API, you can build applications that:

  • Store data for later retrieval
  • Retrieve data from a store
  • Update data in a store
  • Delete data from a store

Connect Data Stores

1
2
3
4
5
6
7
8
9
10
11
export default defineComponent({
  props: {
    myDataStore: {
      type: "data_store",
    },
  },
  async run({ steps, $ }) {
    await this.myDataStore.set("key_here","Any serializable JSON as the value")
    return await this.myDataStore.get("key_here")
  },
})