Skip to main content
GET
/
digital-custody
/
assets
Get Supported Digital Assets
curl --request GET \
  --url https://access.utgl.io/v1/digital-custody/assets \
  --header 'Authorization: Basic <encoded-value>'
[
  {
    "symbol": "USDC",
    "name": "Tether",
    "decimals": 6,
    "chain": "ETH"
  }
]

Authorizations

Authorization
string
header
required

Basic authentication header of the form Basic <encoded-value>, where <encoded-value> is the base64-encoded string username:password.

Response

200 - application/json

OK

symbol
string

Symbol of the digital asset

Example:

"USDC"

name
string

Name of the digital asset

Example:

"Tether"

decimals
integer

Number of decimal places

Example:

6

chain
string

Network / Chain of the digital asset

Example:

"ETH"