Build DeFi dashboards showing ETH prices and portfolio values.
DeFi applications need to display ETH values in user-friendly fiat currencies, but maintaining price feeds and handling currency conversions adds complexity to Web3 development.
Our Ethereum Price API provides real-time ETH prices in 170+ currencies. Display wallet balances, transaction values, and portfolio worth in the user's preferred currency with a single API call.
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);