Documentation Index
Fetch the complete documentation index at: https://docs.binibit.com/llms.txt
Use this file to discover all available pages before exploring further.
Description
Returns metadata for every asset listed on Binibit — display name, deposit/withdrawal status, fees, and limits.
Useful for rendering deposit and withdrawal screens, fee calculators, and asset directories.
Parameters
This endpoint takes no query parameters.
Response
A JSON object keyed by asset symbol. Each value is an asset object.
Asset object schema
Display name of the asset (e.g. Bitcoin, Tether).
CoinMarketCap unified asset ID where known. null for assets without a CMC mapping.
true if withdrawals are currently enabled for this asset.
true if deposits are currently enabled for this asset.
Minimum withdrawal amount in asset units. null if not configured.
Maximum single-transaction withdrawal amount. null if no upper bound.
Default spot maker fee, expressed as a fraction (e.g. 0.001 = 0.1%).
Example request
curl https://internal-api.binibit.com/api/marketdata/getcoingecko/asset
Example response
{
"AAVE": {
"name": "AAVE",
"unified_cryptoasset_id": 7278,
"can_withdraw": true,
"can_deposit": true,
"min_withdraw": 0.1,
"max_withdraw": 1000,
"maker_fee": 0.001,
"taker_fee": 0.001
},
"BTC": {
"name": "Bitcoin",
"unified_cryptoasset_id": 1,
"can_withdraw": true,
"can_deposit": true,
"min_withdraw": 0.0005,
"max_withdraw": 100,
"maker_fee": 0.001,
"taker_fee": 0.001
},
"USDT": {
"name": "Tether",
"unified_cryptoasset_id": 825,
"can_withdraw": true,
"can_deposit": true,
"min_withdraw": 10,
"max_withdraw": 1000000,
"maker_fee": 0.001,
"taker_fee": 0.001
}
}
Notes
- Fee fields reflect default tier rates. VIP and high-volume traders may have lower fees on their account.
- Deposit and withdrawal status can change in real time — always check before initiating a transfer.
- Withdrawal limits are denominated in the asset itself, not USD.