PRODUCT
Unified blockchain data
Query balances, transactions, and address history with a single API. Complex blockchain data, normalized and simple.
Unified Schema
Same data structure across Bitcoin, Ethereum, Solana, and Tron. One integration, all chains.
Real-Time Updates
Balances and transaction data updated within seconds of on-chain confirmation.
Historical Queries
Access complete transaction history for any address. Filter by date, type, or amount.
Normalized Data
We handle the complexity of different blockchain formats. You get clean, consistent JSON.
Analytics Ready
Export data for analysis. CSV, JSON, or direct database sync available.
Multi-Chain Aggregation
Aggregate balances across multiple networks into a single view.
Clean data, zero complexity
We normalize blockchain data so you don't have to. Consistent formats across all networks, ready for your application.
1const balance = await Relay.data.getBalance({2 address: '0x742d35Cc6634C0532925a3b844Bc9e...',3 network: 'ethereum'4});5 6"comment">// Returns normalized balance object7{8 "address": "0x742d35Cc...",9 "network": "ethereum",10 "balances": [11 { "asset": "ETH", "amount": "2.5", "usd_value": "4500.00" },12 { "asset": "USDC", "amount": "10000", "usd_value": "10000.00" }13 ]14}