Overview
Access the up-to-date list of cryptocurrencies we support for fiat > crypto credit/debit purchases by their full names and symbol names. Note that you will use the symbol name to specify a token to buy under the 'cryptocurrencySymbol' request parameter after charging a credit/debit card in this section.
Bitcoin
btc
Ethereum
eth
Ripple (XRP)
xrp
EOS
eos
Tron
trx
Hedera Hashgraph - HBAR
hbar
Telos
tlos
BNT on EOS
BNT (EOS) - BNT on EOS
Dai
dai
XDai
xdai
BitTorrent
btt
Binance Coin
bnb
VegaWallet Token (VGW)
vgw
CUSD (ETH)
cusdeth
CUSD (EOS)
cusdeos
TRXD (Carbon dollar on Tron)
trxd
CUSD (Binance Chain)
cusdbinance
JAM
jam
TLOSD (Carbon dollar on Telos)
tlosd
ORED (Carbon dollar on ORE)
ored
Reserve Rights
rsr
Reserve Stablecoin
rsv
USD Coin -- Circle
usdc
Siacoin
sc
Flexa
fxc
Coin (ERC-20)
coin
PumaPay
pma
No Super JWT required
let url = `${ROOT}/v1/admin/cryptocurrencies`;
axios.get(url)
.then(result => console.log(result))
.catch(err => console.log(err));
{ message: 'Successfully retrieved supported cryptocurrencies',
code: 200,
data:
[ { symbol: 'btc', name: 'Bitcoin' },
{ symbol: 'eth', name: 'Ethereum' },
{ symbol: 'xrp', name: 'Ripple (XRP)' },
{ symbol: 'eos', name: 'EOS' },
{ symbol: 'trx', name: 'Tron' },
{ symbol: 'hbar', name: 'HBar' },
{ symbol: 'tlos', name: 'Telos' },
{ symbol: 'bnteos', name: 'BNT (EOS) - BNT on EOS' },
{ symbol: 'dai', name: 'Dai' },
{ symbol: 'xdai', name: 'xDAI' },
{ symbol: 'vgw', name: 'VGW - VegaWallet' },
{ symbol: 'btt', name: 'BitTorrent' },
{ symbol: 'bnb', name: 'Binance Coin' },
{ symbol: 'cusdeth', name: 'CUSD (ETH)' },
{ symbol: 'cusdeos', name: 'CUSD (EOS)' },
{ symbol: 'trxd', name: 'TRXD (Carbon dollar on Tron)' },
{ symbol: 'cusdbinance', name: 'CUSD (Binance Chain)' },
{ symbol: 'jam', name: 'JAM' },
{ symbol: 'tlosd', name: 'TLOSD (Carbon dollar on Telos)' },
{ symbol: 'ored', name: 'ORED (Carbon dollar on ORE)' }
]
}