Transactions
Retrieve deposit, withdrawal or transfer by transaction ID.
The transactionId of the transaction
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"
}
Retrieve deposits, withdrawals and transfers with optional filtering and pagination.
Filter transactions by type (deposit, withdrawal, transfer)
Filter transactions by status
Filter transactions by creation date lower bound, exclusive
Filter transactions by creation date upper bound, inclusive
Filter executions by account ID
When provided, specifies the last item returned in previous page, used to fetch the next page. Fetches the first page when omitted.
When provided, specifies the number of items to return in the page. Uses default page size of 10 when omitted.
Will sort the returned data using the specified field.
Specifies the sort direction for the sortField.
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