Skip to Content

Santiment Data Parser & API

Santiment is a leading on-chain and social analytics platform that tracks behavioral, sentiment and blockchain metrics across crypto assets, and StockAPIS extracts its data — social volume, sentiment scores, active addresses, development activity and trending words for 2,000+ assets — through a single REST API. Santiment offers an official GraphQL API (SanAPI), and StockAPIS normalizes it to the same schema you use for every other data source, so you pull Santiment alongside exchange prices and news without maintaining a separate GraphQL integration.

TypeOn-chain & social analytics Data API
HQTallinn, Estonia
OwnerSantiment (SAN token / Santiment GmbH)
Asset classesSocial sentiment, On-chain metrics, Development activity, Crypto market data
Coverage2,000+ crypto assets
ScaleLeading on-chain & social analytics provider
API accessOfficial API
Parse priority★★★★☆
Official sitesantiment.net

Platform Overview

Market Position

  • One of the most established on-chain and social intelligence providers in crypto
  • Coverage spanning 2,000+ assets with social, blockchain and development-activity metrics
  • Behavioral analytics built to surface crowd sentiment, FOMO/FUD and whale movements
  • Official GraphQL API (SanAPI), normalized by StockAPIS into a unified REST schema

Data Coverage

StockAPIS exposes the full Santiment metric surface:

  • Social metrics — social volume, social dominance, sentiment scores, trending words across Twitter, Reddit, Telegram and forums
  • On-chain metrics — active addresses, network growth, transaction volume, token age consumed, exchange in/outflows
  • Whale & holder behavior — whale transaction counts, supply distribution, holder cohorts
  • Development activity — GitHub commit and dev-activity metrics by project
  • Valuation signals — MVRV, NVT, realized cap and other on-chain valuation ratios
  • Historical series — time-series data for backtesting sentiment and on-chain strategies

Quick Start

import stockapis client = stockapis.Client(api_key="your-api-key") # Social sentiment + on-chain snapshot for an asset data = client.santiment.get_metrics(asset="bitcoin", metrics=["sentiment_score", "social_volume", "active_addresses"]) print(f"Sentiment {data['sentiment_score']} · social vol {data['social_volume']}")
const { StockAPIS } = require("stockapis"); const client = new StockAPIS({ apiKey: "your-api-key" }); // Trending words and social volume for Ethereum const social = await client.santiment.getSocial({ asset: "ethereum", limit: 30 }); console.log(social.trending_words, social.social_volume);

Sample API Response

{ "success": true, "data": { "asset": "bitcoin", "sentiment_score": 0.75, "social_volume": 12500, "social_dominance": 18.4, "active_addresses": 950000, "network_growth": 14200, "dev_activity": 312, "whale_transaction_count": 184, "mvrv": 1.92, "trending_words": ["halving", "etf", "ath"], "timestamp": "2024-01-15T10:30:00.000Z" }, "metadata": { "source": "santiment", "timestamp": "2024-01-15T10:30:00.000Z" } }

Use Cases

  • Sentiment-driven trading — turn social volume, dominance and sentiment scores into entry/exit signals and FOMO/FUD detection
  • On-chain research — track active addresses, network growth and whale flows to gauge fundamental adoption
  • Quant backtesting — combine Santiment historical series with price data to build and validate alpha factors
  • Risk monitoring — watch exchange flows, supply distribution and crowd sentiment for early de-risking signals

Frequently Asked Questions

Does Santiment have an official API? Yes — Santiment provides an official GraphQL API (SanAPI). StockAPIS wraps it in a unified REST schema so Santiment’s social and on-chain metrics match every other source you pull.

What data can I get from Santiment through StockAPIS? Social volume, social dominance, sentiment scores and trending words, plus on-chain metrics like active addresses, network growth, transaction volume, whale transaction counts, MVRV and development activity across 2,000+ assets.

Can I get historical Santiment metrics? Yes — StockAPIS exposes Santiment’s time-series data, so you can pull historical social and on-chain metrics for backtesting and trend analysis.

Last updated on