Skip to main content
GET
/
api
/
v1
/
assets
/
{asset}
Get asset details
curl --request GET \
  --url https://api.international.coinbase.com/api/v1/assets/{asset}
{
  "asset_id": 3351829018369611,
  "asset_uuid": "592a8039-db3e-45ed-b752-ffd1983eead2",
  "asset_name": "BTC",
  "status": "ACTIVE",
  "collateral_weight": 0.9,
  "supported_networks_enabled": true,
  "min_borrow_qty": 10,
  "max_borrow_qty": 1000000,
  "loan_collateral_requirement_multiplier": 1.2,
  "ecosystem_collateral_limit_breached": false,
  "loan_initial_margin": 0.15,
  "max_loan_leverage": 3
}
  • Java
  • .NET
  • Go
  • Python
  • TS/JS
  • CLI
AssetsService assetsService = IntxServiceFactory.createAssetsService(client);
GetAssetRequest request = new GetAssetRequest.Builder()
    .assetId("BTC")
    .build();
GetAssetResponse response = assetsService.getAsset(request);
For more information, please visit the INTX Java SDK.

Path Parameters

asset
string
required

Response

asset_id
string
Example:
asset_uuid
string<uuid>
Example:
asset_name
string
Example:
status
enum<string>
Available options:
ACTIVE,
DISABLED
Example:
collateral_weight
number
Example:
supported_networks_enabled
boolean
Example:
min_borrow_qty
string
Example:
max_borrow_qty
string
Example:
loan_collateral_requirement_multiplier
number
Example:
ecosystem_collateral_limit_breached
boolean
Example:
loan_initial_margin
string
Example:
max_loan_leverage
string
Example: