Supported Currencies
See the list and details of available currencies.
Currency resources are fundamental components of any financial services platform. The currency resource within the Multi-Currency Accounts system provides comprehensive metadata for supported currencies, encompassing ISO codes, full names, and decimal precision.
This resource serves as the primary identifier for all currency-related API interactions, including transaction processing, balance reporting, and currency conversion operations. Supported currency types encompass fiat, cryptocurrency, and stablecoin assets.
It is important to interact with the currency resource as often as possible. This is because the available supported currencies can be updated due to several factors. While the list is fairly stable, make sure to always be up to date.
Retrieve a list of supported currencies.
curl --request GET \
--url https://api.busha.co/currencies
Currency categories.
Currencies are categorized into three distinct types: Fiat, Cryptocurrency, and Stablecoin. The API supports filtering by currency type:
curl --request GET \
--url https://api.busha.co/currencies?type={currencyType}
where {currencyType}
is any of fiat
, crypto
, or stablecoin
. This type filter can also have multiple values like so:
curl --request GET \
--url https://api.busha.co/currencies?type=fiat&type=crypto
Retrieve details about a specific currency.
Detailed information for a specific currency can be retrieved':
curl --request GET \
--url https://api.busha.co/currencies/{code}