⚙️
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 Deposit Instructions
  • Example
  1. Reference
  2. Accounting
  3. Transfers Instructions

Get Deposit Instructions

requires auth

Get Deposit Instructions

Endpoint to retrieve deposit instructions for assets and funds. Used to obtain the instructions to deposit funds and digital assets.

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

Path Parameters:

Path
Type
Description

accountId*

string

your account ID

Example

GET /api/v1/accounting/account/myAccountID/request/deposit-instructions
// Successful Response body 
{
    "accountId" : "MyAccountId",
    "instructions" : [
      {
        "asset" : "BTC",
        "assetType" : "blockchain",
        "networkType" : "bitcoin",
        "address" : "my_bitcoin_address"
      },
      {
        "asset" : "USDC",
        "assetType" : "blockchain",
        "networkType" : "trc20",
        "address" : "my_tron_address"
      }, {
        "asset" : "USD",
        "assetType" : "fiat",
        "method" : "FedWire",
        "bankName" : "My Bank",
        "bankAddress" : "My Banks Address",
        "bankRoutingNumber" : "000000000",
        "bankSwiftNumber" : "CUESUS33",
        "beneficiaryName" : "1Konto Inc.",
        "beneficiaryAddress" : "1Konto Corp Address",
        "beneficiaryAccountNumber" : "the 1konto account number",
        "specialInstructions" : "IBAN: My IBAN Account Number; Reference: MyAccountId"
      }
    ],
    "status" : "ok",
    "httpStatusCode" : 200
  }
}
// Error Response body
{
  "status": 404,
  "error": "The deposit instructions with the provided ID were not found"
}

PreviousTransfers InstructionsNextGet Withdraw Instructions

Last updated 1 year ago

Page cover image