Coverage
Account provider types
Account providers have three types:
- Onchain (blockchain) like BTC, LTC, ...
- Exchange (CEX) like Coinbase
- NFT
Account providers list
Provides list of all supported account providers.
Request
GET <https://api.blockmate.io/v1/account_providers
>
Response
{
"name": "btc",
"type": "crypto_wallet",
"url": "onchain/bitcoin"
}
Account provider details
Get detailed information about the account providers.
Request
GET <https://aisp-api.blockmate.io/v1/{account_provider_type}/{account_provider}/connect
>
account_provider_type
: onchain, exchange, nft
Response
{
"description": "Bitcoin",
"url": "https://bitcoin.org/en/",
"intro": "Connecting to Bitcoin using bitcoin address.",
"fields": {
"wallet": "Bitcoin wallet address"
},
"oauth": false
}
description
: The name of the Crypto-currency, CEX,...url
: Url to the main page of the CEX, cryptocurrency. If necessary, can be empty string.intro
contain introduction to how to collect the credentials, for example: "Visit http://docs..../get-api-token for instructions how to get your api key and api secret."fields
is a dictionary, descripting the fields requested in the POST /connect call.oauth
is a bool, which is true if oauth authentication is supported by Blockmate
List
You can see a complete list of cryptocurrency exchanges, wallets, and other accounts here:
Exchanges
Name | API URL variable |
---|---|
Aax | aax |
Ascendex | ascendex |
Bigone | bigone |
Binance | binance |
Binance US | binanceus |
Bitbns | bitbns |
Bitget | bitget |
Bitfinex | bitfinex |
Bitflyer | bitflyer |
Bitmex | bitmex |
Bitpanda | bitpanda |
Bitso | bitso |
Bitstamp | bitstamp |
Bitrue | bitrue |
Blockchain.com | blockchaincom |
Bybit | bybit |
Coinbase | coinbase |
Crypto.com | cryptocom |
Gemini | gemini |
Huobi | huobi |
Kraken | kraken |
KuCoin | kucoin |
Lbank | lbank |
Okex | okex |
Gate.io | gateio |
Onchain wallets
Name | API URL variable | Details |
---|---|---|
Ada | ada | |
Bitcoin | btc | |
Celo | celo | |
Ethereum | eth | With ERC-20 tokens support |
Litecoin | ltc | |
Matic | matic | |
Neo | neo | |
Solana | sol | |
TRX | trx | |
XLM | xlm | |
XRP | xrp |
NFTs
Name | API URL variable |
---|---|
Ethereum | eth |
Solana | sol |
Updated over 1 year ago