Retrieve details of a specific currency
curl --request GET \
--url https://api.sandbox.busha.so/v1/currencies/{code} \
--header 'Authorization: Bearer <token>'
{
"status": "success",
"message": "message for success",
"data": {
"code": "BTC",
"description": "<string>",
"name": "Bitcoin",
"display_name": "Bitcoin (BTC)",
"type": "fiat",
"decimals": "8",
"default_network": "ethereum",
"deposit": true,
"icon": "https://example.com",
"withdrawal": true,
"precision": "8",
"supported_networks": [
{
"id": "ethereum",
"name": "Ethereum",
"status": "active",
"transaction_link": "https://example.com",
"address_link": "https://example.com",
"max_withdrawal_amount": "100.00",
"min_withdrawal_amount": "0.01",
"min_deposit_amount": "0.001",
"confirmations_required": "12",
"network": "ETH",
"withdrawal_fee": "0.0001",
"address_regex": "^0x[a-fA-F0-9]{40}$",
"testnet_address_regex": "^0x[a-fA-F0-9]{40}$",
"contract_address": "0xdac17f958d2ee523a2206206994597c13d831ec7",
"is_ramp_sell_supported": true,
"is_ramp_buy_supported": true
}
],
"is_ramp_sell_supported": true,
"is_ramp_buy_supported": true,
"maximum_ramp_buy": "1000",
"maximum_ramp_sell": "1000"
}
}