⚙️
1Konto v1.0 API Docs
  • Welcome!
  • Reference
    • API Reference
    • Service
      • Service Information
      • Service Time
    • Authentication
      • Login and Authentication
    • Market Data
      • Get Top of Book
      • Get Order Book
    • Accounting
      • Get Account
      • Get Account Credit
      • Get Transactions
      • Transfers Instructions
        • Get Deposit Instructions
        • Get Withdraw Instructions
      • Withdraw Requests
        • Request Withdraw - Fiat
        • Request Withdraw - Blockchain
        • Querying for Withdraw Requests
    • Orders
      • Available Asset Pairs
      • Request Indicative Price
      • Market Order
      • Limit Order
      • RFQ - Request for Quote
        • Request Quote
        • Accept Quote
      • Querying for Orders
      • Get Order
Powered by GitBook
On this page
  • Get Withdraw Instructions
  • Example
  1. Reference
  2. Accounting
  3. Transfers Instructions

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
// Successful Response body{
  "accountId" : "MyAccountId",
  "instructions" : [
    {
      "asset" : "BTC",
      "assetType" : "blockchain",
      "networkType" : "bitcoin",
      "address" : "my_bitcoin_address"
    },
    {
      "asset" : "ETH",
      "assetType" : "blockchain",
      "networkType" : "erc20",
      "address" : "my_ethereum_address"
    },
    {
      "asset" : "USDC",
      "assetType" : "blockchain",
      "networkType" : "erc20",
      "address" : "my_ethereum_address"
    },
    {
      "asset" : "USDC",
      "assetType" : "blockchain",
      "networkType" : "trc20",
      "address" : "my_tron_address"
    }
  ],
  "status" : "ok",
  "httpStatusCode" : 200
}

// Error Response body
{
  "status": 404,
  "error": "The withdraw instructions with the provided ID were not found"
}
PreviousGet Deposit InstructionsNextWithdraw Requests

Last updated 1 year ago

Page cover image