Skip to main content
GET
/
digital-custody
/
deposit-addresses
Get Deposit Addresses
curl --request GET \
  --url https://access.utgl.io/v1/digital-custody/deposit-addresses \
  --header 'Authorization: Basic <encoded-value>'
{
  "prevPageToken": "<string>",
  "nextPageToken": "<string>",
  "addresses": [
    {
      "id": "c936a1ff-1d3c-45e1-af1f-ed497685a305",
      "address": "0x000000000dfde7deaf24138722987c9b6991e2d4",
      "asset": "USDC",
      "chain": "ETH",
      "addressTag": "<string>",
      "created": "2023-11-07T05:31:56Z",
      "xid": "<string>",
      "xmetadata": {
        "key1": "value1",
        "key2": [
          "value2.1",
          "value2.2"
        ]
      }
    }
  ]
}

Authorizations

Authorization
string
header
required

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

Query Parameters

asset
string

Asset symbol

chain
string

Network / Blockchain

accountId
string[]

Filter by one or more account id

pageSize
number

Limits the number returned items Some collections have a upper bound that will disregard this value. In case the specified value is higher than the allowed limit, the collection limit will be used. If no page size is provided, the collection will determine the page size itself.

Required range: x >= 1
pageToken
string
Example:

"aWVHZWV5OVgK"

Response

200 - application/json

OK

prevPageToken
string

Opaque page token to retrieve next or previous set of results.

nextPageToken
string

Opaque page token to retrieve next or previous set of results.

addresses
object[]