npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2025 – Pkg Stats / Ryan Hefner

@cryptodevops/n8n-nodes-santiment

v0.3.9

Published

n8n node for Santiment cryptocurrency API

Readme

n8n-nodes-santiment

Custom n8n node for Santiment API integration. This package includes a node for the Santiment API, allowing you to access cryptocurrency market data, on-chain metrics, and social analytics.

Features

  • Get Price Data: Get historical price data for cryptocurrencies
  • Get Development Activity: Track GitHub development activity metrics
  • Get Social Volume: Access social media mentions and sentiment data
  • Get On-Chain Data: Get blockchain metrics like active addresses
  • Get Project List: Access details about cryptocurrency projects
  • Execute Custom Query: Execute custom GraphQL queries for advanced use cases
  • Flexible Date Formats: Support for multiple date formats (YYYY-MM-DD, DD-MM-YYYY, YYYY/MM/DD, relative dates)

Installation

npm install @cryptodevops/n8n-nodes-santiment

Configuration

Santiment API

  1. Get your Santiment API Key from Santiment Account Page
  2. In n8n, create new credentials for "Santiment API"
  3. Enter your API Key in the API Key field

Santiment Free Tier

  • Limited historical data (typically 30-90 days)
  • Limited number of API calls
  • Restricted access to certain metrics

Available Operations

Santiment Operations

  • Get Price Data (getPriceData): Get price data for a cryptocurrency
  • Get Development Activity (getDevActivity): Get development activity metrics
  • Get Social Volume (getSocialVolume): Get social media mentions and volume
  • Get On-Chain Data (getOnChainData): Get on-chain metrics like active addresses
  • Get Project List (getProjectList): Get list of available projects
  • Execute Custom Query (executeCustomQuery): Run custom GraphQL queries

Supported Date Formats

The node supports multiple date formats for the fromDate and toDate parameters:

  • ISO Format: 2023-01-01T00:00:00Z (standard format accepted by Santiment API)
  • YYYY-MM-DD: 2023-01-01 (automatically converted to ISO format)
  • DD-MM-YYYY: 01-01-2023 (automatically converted to ISO format)
  • YYYY/MM/DD: 2023/01/01 (automatically converted to ISO format)
  • Relative Dates: utc_now-30d, utc_now (directly supported by Santiment API)

Usage Examples

Get Price Data for Bitcoin

{
  "operation": "getPriceData",
  "slug": "bitcoin",
  "fromDate": "utc_now-30d",
  "toDate": "utc_now",
  "interval": "1d"
}

Get Development Activity for Ethereum

{
  "operation": "getDevActivity",
  "slug": "ethereum",
  "fromDate": "utc_now-30d",
  "toDate": "utc_now",
  "interval": "1d"
}

Get Social Volume for Bitcoin

{
  "operation": "getSocialVolume",
  "slug": "bitcoin",
  "fromDate": "utc_now-30d",
  "toDate": "utc_now-23d",
  "interval": "1d"
}

Get On-Chain Data (Daily Active Addresses)

{
  "operation": "getOnChainData",
  "slug": "bitcoin",
  "fromDate": "utc_now-30d",
  "toDate": "utc_now-23d",
  "interval": "1d"
}

Get Project List

{
  "operation": "getProjectList",
  "page": 1,
  "pageSize": 20
}

Execute Custom GraphQL Query

{
  "operation": "executeCustomQuery",
  "query": "{ allProjects(page: 1, pageSize: 5) { slug name ticker } }"
}

API Documentation

For more information about the Santiment API, visit:

Tests

Des tests complets ont été réalisés pour valider l'authentification et les fonctionnalités de l'API Santiment. Pour plus d'informations sur les tests disponibles et comment les exécuter, consultez les fichiers suivants :

License

MIT

Support

For issues and feature requests, please visit our GitHub repository.