Returns the supported blockchain networks and crypto asset capabilities for a specific account. Use this endpoint to dynamically determine which networks and assets are available for money movement operations for the given account.
A JWT signed using your CDP API Key Secret, encoded in base64. Refer to the Generate Bearer Token section of our Authentication docs for information on how to generate your Bearer Token.
The ID of the account for which to return network capabilities.
The ID of the Account, which is a UUID prefixed by the string account_.
^account_[a-f0-9\-]{36}$"account_af2937b0-9846-4fe7-bfe9-ccc22d935114"
Successfully retrieved network capabilities.
The supported blockchain networks and asset capabilities for an account, grouped by CDP resource.
The ID of the Account, which is a UUID prefixed by the string account_.
^account_[a-f0-9\-]{36}$"account_af2937b0-9846-4fe7-bfe9-ccc22d935114"
The supported networks, assets, and liquidation capability for creating deposit destinations.
{
"networks": [
{
"network": "base",
"assets": ["usdc", "usdt"]
},
{ "network": "solana", "assets": ["usdc"] }
],
"liquidationSupported": true
}