Skip to main content

Nansen Premium Feeds

These 5 feeds are powered by Nansen — institutional-grade on-chain analytics used by hedge funds, VCs, and professional traders.

info

Premium feeds cost more (0.05-0.08 STX) because they consume Nansen API credits on each request.

Smart Money Flows

PropertyValue
Feed IDsmart-money-flows
Price0.08 STX
Nansen Endpointssmart-money/netflow + smart-money/dex-trades

Tracks net capital flows from smart money wallets (labeled by Nansen as VCs, funds, whales).

const result = await sf.buy('smart-money-flows');
// result.data.signal → 'BULLISH_INFLOW' | 'BEARISH_OUTFLOW' | 'NEUTRAL'
// result.data.net_inflow_usd → 45000000
// result.data.top_inflows → [{token, amount_usd}, ...]
// result.data.top_outflows → [{token, amount_usd}, ...]

Token Intelligence

PropertyValue
Feed IDtoken-intel
Price0.05 STX
Nansen Endpointtgm/token-information (Token God Mode)

Buy/sell metrics, liquidity analysis, and trading signals for any token.

Query params: ?address=0x...&chain=ethereum

const result = await sf.buy('token-intel', {
address: '0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48', // USDC
chain: 'ethereum',
});
// result.data.signal → 'STRONG_BUY' | 'BUY' | 'NEUTRAL' | 'SELL' | 'STRONG_SELL'
// result.data.buy_sell_ratio → 1.45
// result.data.market_cap → 32000000000

Wallet Profiler

PropertyValue
Feed IDwallet-profiler
Price0.05 STX
Nansen Endpointprofiler/address/current-balance

Portfolio analysis for any wallet address — holdings, allocation, concentration.

Query params: ?address=0x...&chain=ethereum

const result = await sf.buy('wallet-profiler', {
address: '0xb5998e11E666Fd1e7f3B8e8d9122A755eec1E9b7',
chain: 'ethereum',
});
// result.data.address → '0xb599...'
// result.data.total_value_usd → 15000000
// result.data.top_holdings → [{token, value_usd, percentage}, ...]

Smart Money Holdings

PropertyValue
Feed IDsmart-money-holdings
Price0.05 STX
Nansen Endpointsmart-money/holdings

Current token holdings across all tracked smart money wallets, with accumulation/distribution signals.

const result = await sf.buy('smart-money-holdings');
// result.data.holdings → [{token, signal, ...}, ...]
// signal: 'ACCUMULATING' | 'DISTRIBUTING' | 'HOLDING'

DEX Trading Intel

PropertyValue
Feed IDdex-trades
Price0.08 STX
Nansen Endpointssmart-money/dex-trades + smart-money/perp-trades

Real-time DEX and perpetual trading activity from smart money wallets.

const result = await sf.buy('dex-trades');
// result.data.most_bought → [{token, ...}, ...]
// result.data.most_sold → [{token, ...}, ...]
// result.data.recent_trades → [{token, side, ...}, ...]