GET
/
v1
/
entities
/
{entity_id}
/
assets
curl --request GET \
  --url https://api.prime.coinbase.com/v1/entities/{entity_id}/assets
{
  "assets": [
    {
      "name": "Bitcoin",
      "symbol": "BTC",
      "decimal_precision": "8",
      "trading_supported": true,
      "explorer_url": "https://live.blockcypher.com/btc/",
      "networks": [
        {
          "network": {
            "id": "<string>",
            "type": "<string>"
          },
          "name": "Ethereum",
          "max_decimals": "8",
          "default": true,
          "trading_supported": true,
          "vault_supported": true,
          "prime_custody_supported": true,
          "destination_tag_required": true,
          "network_link": "https://live.blockcypher.com/btc/"
        }
      ]
    }
  ]
}

Entity ID

To retrieve your entity_id, use List Portfolios.

Use the Prime SDK or CLI to test this endpoint by following the quickstart guide and running with the following examples

primectl list-assets --help

For more information, please visit the Prime CLI.

Path Parameters

entity_id
string
required

The entity ID

Response

200
application/json

A successful response.

The response is of type object.