Wallet Data Overview

Comprehensive wallet data for any Solana address. Track token balances, NFT holdings, DeFi positions, and historical value—all powered by vetted market prices.

Why Wallet Intelligence Matters

Understanding what's inside a wallet is fundamental to nearly every Solana application. Whether you're building a portfolio tracker, analyzing whale behavior, or powering a trading bot, you need accurate, real-time wallet data.

But here's the problem: most APIs only show you tokens sitting in a wallet. The moment a user deposits into a lending protocol, adds liquidity to a pool, or stakes their tokens—those assets "disappear" from traditional balance queries.

Vybe solves this with complete wallet intelligence that tracks assets across 50+ DeFi protocols, giving you the true picture of any wallet's holdings.

Value Proposition: DeFi positions no one else has.


What Makes Vybe Different

FeatureTraditional APIsVybe
Token Balances
NFT Holdings
USD ValuationsSometimes✅ Always (vetted prices)
DeFi Positions✅ LP, lending, staking
Historical DataRarely✅ 30-day time series
Labeled Wallets✅ CEX, KOL, protocols
Multi-wallet BatchLimited✅ Up to 10 wallets

What's Available

Vybe's wallet endpoints go beyond basic balance queries:

DataDescriptionEndpoint
Token BalancesAll SPL tokens with USD values/wallets/{addr}/token-balance
Balance HistoryPortfolio value over time (30 days)/wallets/{addr}/token-balance-ts
NFT HoldingsNFTs with collection info and floor prices/wallets/{addr}/nft-balance
DeFi PositionsLP, lending, staking positions/wallets/{addr}/defi-positions
Labeled WalletsIdentify CEX, KOL, project wallets/wallets/known-accounts
Batch QueriesQuery up to 10 wallets at once/wallets/batch/*

Quick Example

Get a wallet's complete token portfolio with one call:

curl "https://api.vybenetwork.com/wallets/YourWallet/token-balance?sortByDesc=value" \
  -H "X-API-Key: YOUR_API_KEY"
{
  "ownerAddress": "YourWallet",
  "totalTokenValueUsd": "15234.56",
  "totalTokenValueUsd1dChange": "+234.12",
  "data": [
    {
      "symbol": "SOL",
      "amount": "50.5",
      "valueUsd": "9363.71",
      "priceUsd1dChange": "+2.3%"
    }
  ]
}

Unique to Vybe: DeFi Positions

No other Solana API provides this. When tokens are deposited into DeFi protocols, they're invisible to standard balance queries. Vybe tracks them across:

Protocol TypeExamples
Liquidity PoolsRaydium, Meteora, Orca, Lifinity
LendingSolend, Marginfi, Kamino
Liquid StakingMarinade, Jito, Sanctum, BlazeStake
Yield FarmingVarious yield aggregators
curl "https://api.vybenetwork.com/wallets/YourWallet/defi-positions" \
  -H "X-API-Key: YOUR_API_KEY"

This means your portfolio trackers show true net worth, not just wallet balances.


Common Use Cases

ApplicationHow Wallet Intelligence Helps
Portfolio TrackerDisplay complete holdings including DeFi
Trading BotCheck balances before executing swaps
Whale WatcherMonitor high-value wallets in real-time
Copy TradingTrack what successful traders hold
Fund DashboardAggregate multi-sig or DAO wallets
Tax ReportingHistorical snapshots for compliance
Airdrop CheckerVerify token/NFT ownership

In This Section