Trending Coins

Trending Coins on Sanbase

Definition

Trending Coins is a subset of Trending Words restricted to words that map to a tracked project (coin or token). It answers the question “which assets is the crowd talking about the most right now?”.

Under the hood the metric uses the same hype score and ranking as Trending Words — the only difference is that the list is filtered down via the wordTypeFilter: PROJECT argument of getTrendingWords.


Access

The metric’s real-time data is free. The metric’s historical data has restricted access.


Measuring Unit

See hype score.


Data Type

Timeseries Data


Frequency

Trending Coins are available at hourly intervals


Latency

Trending Coins have social data Latency


How to Access

Sanbase

Trending Coins are available on the Trending Coins page.

SanAPI

Trending Coins are available as part of the API via the getTrendingWords query with wordTypeFilter: PROJECT. Each returned word resolves to its underlying project, so you can read the slug, name, and ticker directly:

{
getTrendingWords(
from: "2026-01-01T12:00:00Z"
to: "2026-01-01T13:00:00Z"
size: 10
interval: "1h"
wordTypeFilter: PROJECT
) {
datetime
topWords {
word
score
project {
name
slug
ticker
}
}
}
}