latestOpenAPI 3.0.32026-08-224982,0272.8 MB
e445c15e5bee
BitGo Products
List all public assets
Returns a list of all digital assets (coins and tokens) available in the current environment. Each asset includes metadata such as wallet type, custody support, staking support, key curve, contract address, and more.
Use the stakingData query parameter to optionally include detailed staking information for each asset (reward rates, warmup periods, unbonding durations, etc.).
get/api/v1/all/publicAssets
Query parameters
stakingData'true' | 'false'
When set to true, includes detailed staking information for each asset that supports staking. Staking data includes reward rates, minimum stake amounts, warmup periods, unbonding durations, and reward frequency.
Response
Successfully returns the list of public assets.
Example response
[
{
"id": "d5ef3942-9985-4c4a-b30e-1a6078f14ca3",
"name": "Bitcoin",
"symbol": "btc",
"display_name": "Bitcoin",
"display_symbol": "btc",
"environment": "mainnet",
"type": "chain",
"network": "eth",
"decimal": 18,
"wallet_type": [
"MPC",
"Multisig"
],
"key_curve": "secp256k1",
"explorer": "https://etherscan.io",
"contract_address": "0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48",
"custody_supported": true,
"custody_jurisdiction": [
"US",
"DE"
],
"staking_supported": true,
"token_supported": true,
"testnet_symbol": "hteth",
"goaccounts_supported": true,
"staking": {
"rewardRate": "5.98",
"walletType": [
"MPC"
],
"minToStake": 32,
"stakeWarmupPeriod": "2 days",
"claimMethod": "auto",
"autoCompound": "yes",
"unbonding": "21 days",
"rewardFrequency": "3 days"
}
}
]