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

Transactions

PreviousSettlementsNextAccounts

Last updated 8 months ago

GET Transaction

get

Retrieve deposit, withdrawal or transfer by transaction ID.

Authorizations
Path parameters
transactionIdstring · uuidRequired

The transactionId of the transaction

Responses
200
Successful response
application/json
Responseone of
or
or
400
Validation Error
401
Unauthorized
403
Insufficient Privileges
4XX
Client error
5XX
Server error
get
GET /api/v1/transactions/{transactionId} HTTP/1.1
Host: cams.aquanow.com
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
{
  "depositId": "123e4567-e89b-12d3-a456-426614174000",
  "transactionType": "DEPOSIT",
  "transactionStatus": "PENDING_APPROVAL",
  "customerId": "123e4567-e89b-12d3-a456-426614174000",
  "accountId": "123e4567-e89b-12d3-a456-426614174000",
  "quantity": "2.345123",
  "currency": "ETH",
  "confirmations": "6",
  "txHash": "0x7a4650d8f57438312e4c473f3a3e82d0505aa0b77c875b220bed1a31a8c2e6d4",
  "network": "ERC20",
  "sourceAddresses": [
    {
      "address": "0x6BD140405426464d83ed0286217cc9B578Fe5555"
    }
  ],
  "receivedAt": "2025-05-17T13:18:51.014Z",
  "completedAt": "2025-05-17T13:18:51.014Z"
}

GET Transactions

get

Retrieve deposits, withdrawals and transfers with optional filtering and pagination.

Authorizations
Query parameters
transactionTypestring · enumOptional

Filter transactions by type (deposit, withdrawal, transfer)

Possible values:
transactionStatusstring · enumOptional

Filter transactions by status

Possible values:
createdAtStartstring · date-timeOptional

Filter transactions by creation date lower bound, exclusive

createdAtEndstring · date-timeOptional

Filter transactions by creation date upper bound, inclusive

accountIdstring · uuidOptional

Filter executions by account ID

afterstringOptional

When provided, specifies the last item returned in previous page, used to fetch the next page. Fetches the first page when omitted.

limitstring · integerOptional

When provided, specifies the number of items to return in the page. Uses default page size of 10 when omitted.

sortFieldstringOptional

Will sort the returned data using the specified field.

sortDirectionstring · enumOptional

Specifies the sort direction for the sortField.

Possible values:
Responses
200
Successful response
application/json
400
Validation Error
401
Unauthorized
403
Insufficient Privileges
4XX
Client error
5XX
Server error
get
GET /api/v1/transactions HTTP/1.1
Host: cams.aquanow.com
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
{
  "after": "text",
  "totalCount": "3",
  "items": [
    {
      "depositId": "123e4567-e89b-12d3-a456-426614174000",
      "transactionType": "DEPOSIT",
      "transactionStatus": "PENDING_APPROVAL",
      "customerId": "123e4567-e89b-12d3-a456-426614174000",
      "accountId": "123e4567-e89b-12d3-a456-426614174000",
      "quantity": "2.345123",
      "currency": "ETH",
      "confirmations": "6",
      "txHash": "0x7a4650d8f57438312e4c473f3a3e82d0505aa0b77c875b220bed1a31a8c2e6d4",
      "network": "ERC20",
      "sourceAddresses": [
        {
          "address": "0x6BD140405426464d83ed0286217cc9B578Fe5555"
        }
      ],
      "receivedAt": "2025-05-17T13:18:51.014Z",
      "completedAt": "2025-05-17T13:18:51.014Z"
    }
  ]
}
  • GETGET Transaction
  • GETGET Transactions