Get Deposit Instructions

Retrieves the specific wire instruction details required to deposit fiat currency (like USD or EUR) into your platform account. You must specify the currency and the accountId of the account you are looking to fund.

Get Deposit Fiat Instructions

Retrieve deposit bank instructions with optional filtering.

GET https://api.aquanow.io/accounts/v2/depositInstructions

Query Parameters

Name
Type
Description

accountId

String

Required. Used to retrieve the bank instructions configured for the specified account (e.g., "CA1000897R").

currency

String

Required. The fiat currency that the client is looking to deposit into. (e.g., "USD")

Headers

Name
Type
Description

x-api-key*

String

{{x-api-key}}

API Auth Key

x-signature*

String

32c92660f65cbb78d0eaf9a4361fb6b0a2cb8bb4c40f531e9974a0afc12d9a328b5ff621w544d242ee9ba1dfa799c85a

Signature created using your API secret

x-nonce*

String

1657731573930

Timestamp in millisecond

Response

{
  "accountId": "CA2595342R",
  "currency": "USD",
  "updatedAt": "2024-06-01T14:22:45.123Z",
  "beneficiaryLegalName": "James B. Holdings Ltd.",
  "beneficiaryBankName": "Toronto-Dominion Bank",
  "beneficiaryAddress": {
    "addressLine1": "100 King Street West",
    "addressLine2": "Suite 5700",
    "city": "Toronto",
    "region": "ON",
    "postalCode": "M5X 1C9",
    "country": "CA"
  },
  "beneficiaryAccountNumber": "000123456789",
  "beneficiaryBankBic": "TDOMCATTTOR",
  "beneficiaryRoutingCode": "026009593",
  "beneficiaryBankMemo": "Invoice #INV-20240601",
  "beneficiaryBankAddress": {
    "addressLine1": "55 King Street West",
    "addressLine2": "Floor 3",
    "city": "Toronto",
    "region": "ON",
    "postalCode": "M5H 1J9",
    "country": "CA"
  },
  "intermediaryBankName": "Bank of America N.A.",
  "intermediaryAccountNumber": "987654321000",
  "intermediaryBankBic": "BOFAUS3NXXX",
  "intermediaryBankAddress": {
    "addressLine1": "222 Broadway",
    "addressLine2": "Floor 2",
    "city": "New York",
    "region": "NY",
    "postalCode": "10038",
    "country": "US"
  }
}

Get Crypto Deposit Instructions

Get Crypto Deposit Instructions

GET https://api.aquanow.io/accounts/v2/depositInstructions

Query Parameters

Name
Type
Description

accountId

String

Required. Used to retrieve the bank instructions configured for the specified account (e.g., "CA1000897R").

currency

String

Required. The asset ticker or fiat currency that the client is looking to deposit. For crypto: e.g., "BTC", "ETH", "AAVE", "USDC", etc. The supported assets are available on the Supported Assets and Tickers page.

networkSymbol

String

Required for crypto deposits. The network symbol that the client is looking to deposit funds into (e.g., "BTC", "ETH", "TRON", "TRX", "SOL", etc.). The supported networks are available on the Supported Assets and Tickers page.

Note: If networkSymbol is provided, the endpoint will return crypto deposit instructions. If networkSymbol is not provided and currency is a supported fiat currency, the endpoint will return fiat bank instructions.

Headers

Name
Type
Description

x-api-key*

String

{{x-api-key}}

API Auth Key

x-signature*

String

32c92660f65cbb78d0eaf9a4361fb6b0a2cb8bb4c40f531e9974a0afc12d9a328b5ff621w544d242ee9ba1dfa799c85a

Signature created using your API secret

x-nonce*

String

1657731573930

Timestamp in millisecond

Response

Response Fields:

Field Name
Data Type
Description
Required/Optional

accountId

string

Account ID for which the instructions are returned

Required

currency

string

Returns the asset ticker that the user is looking to deposit (e.g., "BTC", "ETH", "USDC", "AAVE")

Required

networkSymbol

string

Returns the network that the client is looking to deposit funds into (e.g., "BTC", "ETH", "TRON", "TRX", "SOL")

Required

updatedAt

string

The timestamp of when the deposit instructions were last updated, in ISO 8601 UTC format

Required

depositAddress

string

Returns the deposit address that the client can use to deposit funds

Required

depositCurrencyTagMemo

string

Only returns for networks that support currency/memo, such as XRP, XLM. Returns the currency tag/memo that the client is required to send

Optional

Last updated