Skip to main content

Get Coins Information

Get detailed information about coins including supported chains, withdrawal/deposit settings, and fees.

HTTP Request

GET /api/v1/spot/market/coins

Request Parameters

ParameterTypeRequiredDescription
coinstringNoCoin symbol (e.g., BTC). If omitted, returns all coins

Request Example

Single Coin Request

curl -X GET "https://open-api.bydoxe.com/api/v1/spot/market/coins?coin=BTC"

All Coins Request

curl -X GET "https://open-api.bydoxe.com/api/v1/spot/market/coins"

Response Parameters

ParameterTypeDescription
codestringResponse code
msgstringResponse message
requestTimenumberRequest timestamp in milliseconds
dataobject/arrayResponse data (object for single coin, array for all)
> coinIdstringUnique identifier for the coin
> coinstringCoin symbol (e.g., BTC, ETH)
> transferstringWhether transfer is enabled ("true" or "false")
> chainsarrayArray of supported blockchain networks
>> chainstringBlockchain network name
>> needTagstringWhether memo/tag is required ("true" or "false")
>> withdrawablestringWhether withdrawal is enabled ("true" or "false")
>> rechargeablestringWhether deposit is enabled ("true" or "false")
>> withdrawFeestringWithdrawal fee amount
>> extraWithdrawFeestringAdditional withdrawal fee
>> depositConfirmstringNumber of confirmations required for deposit
>> withdrawConfirmstringNumber of confirmations required for withdrawal
>> minDepositAmountstringMinimum deposit amount
>> minWithdrawAmountstringMinimum withdrawal amount
>> browserUrlstringBlockchain explorer URL
>> contractAddressstringSmart contract address (for tokens)
>> withdrawStepstringWithdrawal amount increment step
>> withdrawMinScalestringMinimum decimal places for withdrawal
>> congestionstringNetwork congestion status (normal, high, etc.)

Response Example

Success Response (Single Coin)

{
"code": "00000",
"msg": "success",
"requestTime": 1732000000000,
"data": {
"coinId": "1",
"coin": "BTC",
"transfer": "true",
"chains": [
{
"chain": "BTC",
"needTag": "false",
"withdrawable": "true",
"rechargeable": "true",
"withdrawFee": "0.0005",
"extraWithdrawFee": "0",
"depositConfirm": "1",
"withdrawConfirm": "1",
"minDepositAmount": "0.0001",
"minWithdrawAmount": "0.0002",
"browserUrl": "https://btcscan.io",
"contractAddress": "",
"withdrawStep": "0",
"withdrawMinScale": "8",
"congestion": "normal"
}
]
}
}

Success Response (All Coins)

{
"code": "00000",
"msg": "success",
"requestTime": 1732000000000,
"data": [
{
"coinId": "1",
"coin": "BTC",
"transfer": "true",
"chains": [...]
},
{
"coinId": "2",
"coin": "ETH",
"transfer": "true",
"chains": [...]
}
]
}

Error Codes

CodeMessage
40034coin does not exist
50010No coins found