Endpoint that provides information regarding BlockBee API Service (e.g supported blockchains, cryptocurrencies and tokens).
Method: GET
Path: https://api.blockbee.io/info/
Parameters
Query Parameters
Returns
Returns a dictionary where keys are cryptocurrency tickers (e.g., btc
) or blockchain tickers (e.g., avax-c
). A fee_tiers
key is also present at the top level.
btc
object
This object contains details about a specific cryptocurrency. The key is the dynamic ticker of the coin. The example shown is for Bitcoin (btc
).
Human readable name of the currency.
The cryptocurrency logo. Useful to display it to your users.
Ticker of the currency.
The minimum transaction value for this currency is expressed as an integer to facilitate precision value calculations.
For example, in Python: 8000 / 10 ** 8
, where 8 represents the number of decimal places for the cryptocurrency.
Important Note: Values below this value are disregarded by BlockBee.
Minimum transaction value for this currency.
Important Note: Values below this value are disregarded by BlockBee.
Minimum fee value expressed as an integer to facilitate precision value calculations.
For example, in Python: 8000 / 10 ** 8
, where 8 represents the number of decimal places for the cryptocurrency.
Important Note: BlockBee currently doesn't charge a minimum fee. On Bitcoin and Bitcoin Cash there's a minimum transaction fee of 546 Satoshis due to dust threshold. For Litecoin it's 5460 Litoshis.
The minimum fee value.
Important Note: BlockBee currently doesn't charge a minimum fee. On Bitcoin and Bitcoin Cash there's a minimum transaction fee of 546 Satoshis due to dust threshold. For Litecoin it's 5460 Litoshis.
Fee percentage for this currency.
Notes: You can check our fees in this page.
Estimation of the blockchain fee for this cryptocurrency/token.
Notes: This value is informative. To obtain a blockchain fee estimation use the estimate endpoint instead.
Object with the exchange rate of this currency in various FIAT currencies. Keys are the names of the FIAT currencies, values are the exchange rates.
A list of supported FIAT currencies can be found below. If your desired FIat currency is not on the list, please contact us.
- (USD) United States Dollar
- (EUR) Euro
- (GBP) Great Britain Pound
- (CAD) Canadian Dollar
- (JPY) Japanese Yen
- (AED) UAE Dollar
- (MYR) Malaysian Ringgit
- (IDR) Indonesian Rupiah
- (THB) Thai Baht
- (CHF) Swiss Franc
- (SGD) Singapore Dollar
- (RUB) Russian Ruble
- (ZAR) South African Rand
- (TRY) Turkish Lira
- (LKR) Sri Lankan Rupee
- (RON) Romanian Leu
- (BGN) Bulgarian Lev
- (HUF) Hungarian Forint
- (CZK) Czech Koruna
- (PHP) Philippine Peso
- (PLN) Poland Zloti
- (UGX) Uganda Shillings
- (MXN) Mexican Peso
- (INR) Indian Rupee
- (HKD) Hong Kong Dollar
- (CNY) Chinese Yuan
- (BRL) Brazilian Real
- (DKK) Danish Krone
- (TWD) New Taiwan Dollar
- (AUD) Australian Dollar
- (NGN) Nigerian Naira
- (SEK) Swedish Krona
- (NOK) Norwegian Krone
- (UAH) Ukrainian Hryvnia
- (VND) Vietnamese Dong
Notes: Updated every 5 minutes from CoinMarketCap.
Datetime of the last price update.
avax-c
object
This object contains details for a specific blockchain. The key is the dynamic ticker of the blockchain. Inside, it contains objects for each token supported on that blockchain, with the token's ticker as the key.
This object contains details about a specific token on the blockchain. The key is the dynamic ticker of the token. The fields within this object are identical to those in the top-level cryptocurrency object (e.g., btc
).