Aquanow CAMS v1.0 (Updated)
  • Welcome
  • Security
    • OAuth2.0
    • API Limits
  • Pagination
  • Webhooks
    • Onboarding
    • Settlements
    • Reports
    • Order
    • Execution
    • Document
  • Market Data
    • Websocket
    • Rest API
      • OHLC
  • API reference
    • Customers
      • Docs
      • Configuration
    • Trades
      • RFQ
    • Orders
    • Executions
    • Settlements
    • Transactions
    • Accounts
      • Credit
      • Balances
      • Configuration
      • Performance
    • Instruments
      • Pairs
      • Assets
    • Custody
      • Balances
      • Allocation
    • Files
    • Webhook
  • Change Log
  • Specification
  • User Guide
    • View Customers
      • Customer Onboarding
      • Upload Onboarding Docs
      • View Customer Account Balances
      • Customer Risk Groups
    • View Customer Trade Activity
    • Manage Team Members
Powered by GitBook
On this page
  1. API reference
  2. Custody

Balances

PreviousCustodyNextAllocation

Last updated 8 months ago

GET Custody Balances

get

Retrieve custody balances.

Authorizations
Responses
200
Successful response
application/json
400
Validation Error
401
Unauthorized
403
Insufficient Privileges
4XX
Client error
5XX
Server error
get
GET /api/v1/custody/balances HTTP/1.1
Host: cams.aquanow.com
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
{
  "reportingCurrency": "USD",
  "lastUpdatedAt": "2024-08-01T18:44:05Z",
  "warm": {
    "warmMtm": "12962297.93",
    "warmAllocationPct": "0.50",
    "assets": [
      {
        "asset": "BTC",
        "totalBalance": "201.003567",
        "mtm": "12962297.93"
      }
    ]
  },
  "cold": {
    "coldMtm": "12962297.93",
    "coldAllocationPct": "0.50",
    "assets": [
      {
        "asset": "BTC",
        "totalBalance": "201.003567",
        "mtm": "12962297.93"
      }
    ]
  }
}