Skip to main content
GET
/
v1
/
currencies
Retrieve supported currencies
curl --request GET \
  --url https://api.sandbox.busha.so/v1/currencies \
  --header 'Authorization: Bearer <token>'
{
"status": "success",
"message": "message for success",
"pagination": {
"next_cursor": "MjAyNC0xMC0xNVQxMTowNTo1My45NTkxNDErMDE6MDA=",
"current_entries_size": 20,
"previous_cursor": "MjAyNC0xMC0xNVQxMDowNTo1My45NTIxQjE3MDE6MDA="
},
"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"
}
]
}

Authorizations

Authorization
string
header
required

Bearer Authentication

Headers

X-BU-PUBLIC-KEY
string
Example:

"pub_uibaidu930ani"

Query Parameters

type
enum<string>[]
sort
enum<string>

The order to sort the results

Available options:
asc,
desc
Example:

"asc"

payments_request
boolean
ramp
boolean

Response

A list of supported currencies.

General response Values

status
enum<string>
required
Available options:
success,
error
Example:

"success"

message
string
required
Example:

"message for success"

pagination
object
required
data
object[]