Skip to main content
GET
/
exchanges
/
{exchangeId}
/
accounts
/
{accountId}
/
assets
List Account Assets
curl --request GET \
  --url https://api.dfns.io/exchanges/{exchangeId}/accounts/{accountId}/assets \
  --header 'Authorization: Bearer <token>'
{
  "items": [
    {
      "symbol": "<string>",
      "balance": "<string>"
    }
  ],
  "nextPageToken": "<string>"
}

Authentication

✅ Organization User (CustomerEmployee)
❌ Delegated User (EndUser)
✅ Service Account

Required Permissions

Exchanges:Read: Always required.

Authorizations

Authorization
string
header
required

Path Parameters

exchangeId
string
required
Minimum length: 1
accountId
string
required
Minimum length: 1

Query Parameters

limit
integer
default:50
Required range: 1 <= x <= 500
paginationToken
string
Minimum length: 1

Response

200 - application/json
items
object[]
required
nextPageToken
string