Track ETH alongside BTC and other assets in a unified portfolio view.
Portfolio apps need to aggregate values from multiple cryptocurrencies into a single total, requiring price data for each asset and consistent currency conversion.
Combine our Ethereum and Bitcoin Price APIs to calculate total portfolio value. Both APIs use the same currency codes and format, making aggregation straightforward.
const res = await fetch("https://api.apiverve.com/v1/ethereum?currency=USD&hourly=true", {
headers: { "x-api-key": "YOUR_API_KEY" },
});
const { data } = await res.json();
console.log(data);