Transactions

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
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-07-05T19:57:31.116Z",
  "completedAt": "2025-07-05T19:57:31.116Z"
}

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
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-07-05T19:57:31.116Z",
      "completedAt": "2025-07-05T19:57:31.116Z"
    }
  ]
}

Last updated