The most comprehensive institutional grade on-chain data, market data, metrics, and signals.
Tick-by-tick, realtime and historical data including price, order books, and reference rates. Full transparency into the top spot, derivatives and decentralized exchanges.
Learn MoreActionable intelligence combining network and market fundamentals with insights like DeFi TVL, NVT, stock to flow, volatility, velocity, fees, and valuation models.
Learn MoreComprehensive data across the major networks. Realtime and historical balances, transactions for every digital asset and blockchain account.
Learn MoreMarket data speed is a thing of the past, no matter how long ago the data was confirmed.
We're picky about data quality. We've got your back with uptime, data quality & validation.
Amberdata makes it simple & fast to add Digital Assets to any application.
import Web3Data from 'web3data-js'
const w3d = new Web3Data(process.env.AMBERDATA_API_KEY)
// Initialize parameters
const endDate = +new Date()
const startDate = +new Date() - (86400000)
// Get historical pricing data for the pair 'eth/usd'
const prices = await w3d.market.getPrices('eth', {
startDate,
endDate
})
console.log('prices', prices)