Skip to main content
GET
/
wallet
/
blockchains
Get the list of blockchains supported by CoinStats
curl --request GET \
  --url https://openapiv1.coinstats.app/wallet/blockchains \
  --header 'X-API-KEY: <api-key>'
[
  {
    "name": "BNB Smart Chain",
    "connectionId": "binancesmartchain",
    "chain": "binance_smart",
    "icon": "https://static.coinstats.app/portfolio_images/binancesmartchain.png"
  }
]
1 credit per request
  • All supported blockchains
  • Blockchain network names
  • Blockchain network icons
  • To connect your wallet to CoinStats
  • To display blockchain network information
  • In other API endpoints

Authorizations

X-API-KEY
string
header
required

API key needed to access the endpoints. Example: 'demo-api-key'

Response

Get list of blockchains

name
string
required

Human-readable name of the blockchain network

Example:

"BNB Smart Chain"

connectionId
string
required

Unique identifier for the blockchain connection

Example:

"binancesmartchain"

chain
string
required

Internal identifier for the blockchain network

Example:

"binance_smart"

icon
string
required

URL to the blockchain network icon

Example:

"https://static.coinstats.app/portfolio_images/binancesmartchain.png"

I