Funding Requests
Retrieve a list of funding requests with optional filtering and pagination.
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.
Filter by funding request ID
Filter by customer account ID
Filter by beneficiary account ID
Filter by beneficiary currency
Filter by funding currency
Filter by network
Filter by status
Filter by creation date lower bound, exclusive
Filter by creation date upper bound, inclusive
Filter by expiration date lower bound, exclusive
Filter by expiration date upper bound, inclusive
Filter by customer reference
REF-2026-000123Will sort the returned data using the specified field.
Specifies the sort direction for the sortField.
Successful response
The token of the last item in the response
9fe51492-fc0f-483c-ab85-391e4a3a4335The total number of items in the entire filtered data set
1Validation Error
Unauthorized
Insufficient Privileges
Client error
Server error
GET /api/v1/funding-request HTTP/1.1
Host: cams.aquanow.com
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
{
"after": "9fe51492-fc0f-483c-ab85-391e4a3a4335",
"totalCount": "1",
"items": [
{
"customerReference": "REF-2026-000123",
"customerAccountId": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
"feePaidBy": "MERCHANT",
"fundingRequestId": "faf8e68c-2cd5-43a6-b8e1-112535b7de00",
"fundingInstructions": {
"address": "0x1234567890123456789012345678901234567890",
"fundingCurrency": "USDC",
"network": "ETH"
},
"status": "PENDING_ADDRESS",
"conversionRate": "3.6725",
"beneficiaryAccountId": "82f790a1-6729-4058-bbd7-719afe3e7123",
"beneficiaryCurrency": "AED",
"expiresAt": "2026-02-19T18:44:05Z",
"createdAt": "2026-02-19T18:44:05Z",
"depositIds": [
"3fa85f64-5717-4562-b3fc-2c963f66afa6"
]
}
]
}Retrieve a funding request by its ID.
The funding request ID
faf8e68c-2cd5-43a6-b8e1-112535b7de00Successful response
REF-2026-0001233fa85f64-5717-4562-b3fc-2c963f66afa6faf8e68c-2cd5-43a6-b8e1-112535b7de003.672582f790a1-6729-4058-bbd7-719afe3e7123AED2026-02-19T18:44:05Z2026-02-19T18:44:05Z["3fa85f64-5717-4562-b3fc-2c963f66afa6"]Validation Error
Unauthorized
Insufficient Privileges
Not Found
Client error
Server error
GET /api/v1/funding-request/{fundingRequestId} HTTP/1.1
Host: cams.aquanow.com
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
{
"customerReference": "REF-2026-000123",
"customerAccountId": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
"feePaidBy": "MERCHANT",
"fundingRequestId": "faf8e68c-2cd5-43a6-b8e1-112535b7de00",
"fundingInstructions": {
"address": "0x1234567890123456789012345678901234567890",
"fundingCurrency": "USDC",
"network": "ETH"
},
"status": "PENDING_ADDRESS",
"conversionRate": "3.6725",
"beneficiaryAccountId": "82f790a1-6729-4058-bbd7-719afe3e7123",
"beneficiaryCurrency": "AED",
"expiresAt": "2026-02-19T18:44:05Z",
"createdAt": "2026-02-19T18:44:05Z",
"depositIds": [
"3fa85f64-5717-4562-b3fc-2c963f66afa6"
]
}Create a new funding request to obtain deposit instructions for funding an account.
3fa85f64-5717-4562-b3fc-2c963f66afa6The blockchain network. USDT is supported by both ETH and TRX. USDC is supported by ETH only.
82f790a1-6729-4058-bbd7-719afe3e7123REF-2026-000123Successful response
REF-2026-0001233fa85f64-5717-4562-b3fc-2c963f66afa6faf8e68c-2cd5-43a6-b8e1-112535b7de003.672582f790a1-6729-4058-bbd7-719afe3e7123AED2026-02-19T18:44:05Z2026-02-19T18:44:05Z["3fa85f64-5717-4562-b3fc-2c963f66afa6"]Validation Error
Unauthorized
Insufficient Privileges
Client error
Server error
POST /api/v1/funding-request HTTP/1.1
Host: cams.aquanow.com
Authorization: Bearer YOUR_SECRET_TOKEN
Content-Type: application/json
Accept: */*
Content-Length: 252
{
"customerAccountId": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
"fundingCurrency": "USDC",
"network": "ETH",
"beneficiaryAccountId": "82f790a1-6729-4058-bbd7-719afe3e7123",
"beneficiaryCurrency": "AED",
"feePaidBy": "MERCHANT",
"customerReference": "REF-2026-000123"
}{
"customerReference": "REF-2026-000123",
"customerAccountId": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
"feePaidBy": "MERCHANT",
"fundingRequestId": "faf8e68c-2cd5-43a6-b8e1-112535b7de00",
"fundingInstructions": {
"address": "0x1234567890123456789012345678901234567890",
"fundingCurrency": "USDC",
"network": "ETH"
},
"status": "ACTIVE",
"conversionRate": "3.6725",
"beneficiaryAccountId": "82f790a1-6729-4058-bbd7-719afe3e7123",
"beneficiaryCurrency": "AED",
"expiresAt": "2026-02-19T18:44:05Z",
"createdAt": "2026-02-19T18:44:05Z",
"depositIds": [
"3fa85f64-5717-4562-b3fc-2c963f66afa6"
]
}Remove a funding request by its ID.
The funding request ID
faf8e68c-2cd5-43a6-b8e1-112535b7de00Successful response
REF-2026-0001233fa85f64-5717-4562-b3fc-2c963f66afa6faf8e68c-2cd5-43a6-b8e1-112535b7de003.672582f790a1-6729-4058-bbd7-719afe3e7123AED2026-02-19T18:44:05Z2026-02-19T18:44:05ZValidation Error
Unauthorized
Insufficient Privileges
Not Found
Client error
Server error
DELETE /api/v1/funding-request/{fundingRequestId} HTTP/1.1
Host: cams.aquanow.com
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
{
"customerReference": "REF-2026-000123",
"customerAccountId": "72f790a1-6729-4058-bbd7-719afe3e7123",
"fundingRequestId": "faf8e68c-2cd5-43a6-b8e1-112535b7de00",
"fundingInstructions": {
"address": "0x1234567890123456789012345678901234567890",
"fundingCurrency": "USDC",
"network": "ETH"
},
"feePaidBy": "MERCHANT",
"status": "REMOVED",
"conversionRate": "3.6725",
"beneficiaryAccountId": "2494b306-d54d-47f3-9256-30b64689c49f",
"beneficiaryCurrency": "AED",
"expiresAt": "2026-02-19T18:44:05Z",
"createdAt": "2026-02-19T18:44:05Z"
}Last updated