Cryptocurrency Data
to drive your business
for actionable insights
to power your dApp
with realtime price
you can verify

The most comprehensive institutional grade on-chain data, market data, metrics, and signals.

Amberdata is the hub for the growing Cryptocurrency economy

Access best-in-class tools for exchanges, wallets, traders & developers.

Laser fast delivery

Market data speed is a thing of the past, no matter how long ago the data was confirmed.

Top-Tier Coverage

We're picky about data quality. We've got your back with uptime, data quality & validation.

32k+

Traded Pairs

100+

Exchanges

400+

API Endpoints

67

Indicators & Signals

12

Blockchains

Trusted By


Developers love how easy it is to integrate

Amberdata makes it simple & fast to add Digital Assets to any application.

Node.js - getPrices.js
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)

Loading...