Show NFT prices in both ETH and fiat currencies for better user experience.
NFT marketplaces display prices in ETH, but users often want to see the equivalent value in their local currency. This requires real-time ETH price data for accurate conversions.
Use our Ethereum Price API to convert NFT prices from ETH to any fiat currency. Display both ETH and local currency prices to help users make informed purchasing decisions.
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);