Skip to main content
GET
/
api
/
marketdata
/
getcoingecko
/
asset
GET /asset
curl --request GET \
  --url https://internal-api.binibit.com/api/marketdata/getcoingecko/asset
{
  "name": "<string>",
  "unified_cryptoasset_id": {},
  "can_withdraw": true,
  "can_deposit": true,
  "min_withdraw": {},
  "max_withdraw": {},
  "maker_fee": {},
  "taker_fee": {}
}

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

name
string
required
Display name of the asset (e.g. Bitcoin, Tether).
unified_cryptoasset_id
integer | null
CoinMarketCap unified asset ID where known. null for assets without a CMC mapping.
can_withdraw
boolean
required
true if withdrawals are currently enabled for this asset.
can_deposit
boolean
required
true if deposits are currently enabled for this asset.
min_withdraw
decimal | null
Minimum withdrawal amount in asset units. null if not configured.
max_withdraw
decimal | null
Maximum single-transaction withdrawal amount. null if no upper bound.
maker_fee
decimal | null
Default spot maker fee, expressed as a fraction (e.g. 0.001 = 0.1%).
taker_fee
decimal | null
Default spot taker fee.

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.