Page cover

Get Withdraw Instructions

requires auth

Get Withdraw Instructions

Endpoint to retrieve your accounts whitelisted withdraw instructions for assets and funds.

GET /api/v1/accounting/account/{accountId}/request/withdraw-instructions

Path Parameters:

Path
Type
Description

accountId*

string

your account ID

Example

GET /api/v1/accounting/account/myAccountID/request/withdraw-instructions
  "accountId" : "MyAccountId",
  "instructions" : [
    {
      "asset" : "BTC",
      "assetType" : "blockchain",
      "networkType" : "bitcoin",
      "address" : "my_bitcoin_address"
    },
    {
      "asset" : "ETH",
      "assetType" : "blockchain",
      "networkType" : "ethereum",
      "address" : "my_ethereum_address"
    },
    {
      "asset" : "USDC",
      "assetType" : "blockchain",
      "networkType" : "ethereum",
      "address" : "my_ethereum_address"
    },
    {
      "asset" : "USDC",
      "assetType" : "blockchain",
      "networkType" : "tron",
      "address" : "my_tron_address"
    }
  ],
  "status" : "ok",
  "httpStatusCode" : 200
}

Last updated