Converts an amount from one currency to another. Supports both fiat currencies (ISO 4217) and cryptocurrencies.
cURL
curl --request GET \ --url https://api.zenobank.io/api/v1/conversions/convert
{ "amount": "100.50", "from": "EUR", "to": "USDC" }
Source currency code (e.g., USD, EUR, BTC)
"USD"
Target currency code (e.g., USD, EUR, BTC)
"EUR"
Amount to convert
"100"
Successfully converted currency
The converted amount
"100.50"
The source currency code
The target currency code
"USDC"
Was this page helpful?