get https://api.happi.dev/v1/currency-convert/list
Access real-time exchange rates for a comprehensive list of global currencies and cryptocurrencies. This API provides the latest values in USD, making it easy to integrate currency conversion and financial data into your applications.
The API returns an array of objects, each representing a currency or cryptocurrency. Each object includes:
{
"code": "SYMBOL",
"name": "Currency Example",
"price_usd": 0.05
},
The price_usd field represents the value of one unit of a given currency or cryptocurrency in terms of USD. It indicates how much 1 unit of that currency is worth in US dollars.
For example, if price_usd is 0.05, it means that 1 unit of the currency is equal to 0.05 USD.
To calculate the value of 1 USD then...
1 / price_usd = Value of 1 USD in SYMBOL
So, 1 USD would be equivalent to 20 units of SYMBOL.