npm

Node package manager

Integrate the npm API with the Token Metrics API

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

Get Market Metrics with Token Metrics API on npm Download Counts from npm API
npm + Token Metrics
 
Try it
Get Tokens with Token Metrics API on npm Download Counts from npm API
npm + Token Metrics
 
Try it
Get Market Metrics with Token Metrics API on New Package Version from npm API
npm + Token Metrics
 
Try it
Get Tokens with Token Metrics API on New Package Version from npm API
npm + Token Metrics
 
Try it
New Download Counts from the npm API

Emit new event with the latest count of downloads for an npm package. See the documentation.

 
Try it
New Package Version from the npm API

Emit new event when a new version of an npm package is published. See the documentation

 
Try it
Get Market Metrics with the Token Metrics API

Gets the market analytics from Token Metrics. See the documentation

 
Try it
Get Tokens with the Token Metrics API

Gets the list of coins and their associated token_id supported by Token Metrics. See the documentation

 
Try it

Overview of Token Metrics

The Token Metrics API offers access to a trove of cryptocurrency data, including analytics, rankings, and predictions that leverage artificial intelligence and expert insights. With this API, you can automate investment strategies, integrate up-to-date crypto data into your applications, and stay informed with the latest market trends. When used on Pipedream, it allows you to build robust, serverless workflows that can react to various triggers and integrate with numerous services for a seamless data handling experience.

Connect Token Metrics

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: {
    token_metrics: {
      type: "app",
      app: "token_metrics",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://api.tokenmetrics.com/v2/tokens`,
      headers: {
        "accept": `application/json`,
        "api_key": `${this.token_metrics.$auth.api_key}`,
      },
    })
  },
})