Skip to main content
GET
/
v0
/
insto
/
custody
/
vaults
/
{vault_id}
/
deposits
/
info
Get info
curl --request GET \
  --url https://api.kraken.com/v0/insto/custody/vaults/{vault_id}/deposits/info \
  --header 'api-key: <api-key>' \
  --header 'api-nonce: <api-key>' \
  --header 'api-otp: <api-key>' \
  --header 'api-sign: <api-key>'
[
  {
    "name": "Bitcoin",
    "method_id": "11111111-1111-1111-1111-111111111111",
    "fee": "0.00000000",
    "minimum": "0.00050000",
    "is_disabled": false,
    "asset": "BTC",
    "asset_class": "currency",
    "network_info": {
      "network": "Bitcoin",
      "confirmations": "3",
      "confirmation_time": "approx. 30 minutes",
      "explorer": "https://blockstream.info/tx/{txid}"
    }
  }
]

Authorizations

api-key
string
header
required
api-sign
string
header
required
api-nonce
string
header
required
api-otp
string
header
required

Path Parameters

vault_id
string
required

Vault identifier, a V-prefixed 14-char base32 string with a final check character.

Example:

"VABCDEF234567A"

Query Parameters

asset
string
required

Asset code to look up deposit methods for (e.g. BTC, USD). Must be supplied together with asset_class.

Example:

"BTC"

asset_class
string
required

Asset class for the supplied asset. Currently currency is the only supported value.

Example:

"currency"

Response

Deposit methods available for the requested asset in the vault.

name
string

Funding method display name (e.g. Bitcoin, ACH, SEPA).

Example:

"Bitcoin"

method_id
string

Funding method identifier, a UUID.

Example:

"11111111-1111-1111-1111-111111111111"

fee
string

Deposit fee, fixed-precision decimal as string.

Example:

"0.00000000"

minimum
string

Minimum deposit amount, fixed-precision decimal as string.

Example:

"0.00050000"

is_disabled
boolean

Whether this method is temporarily disabled.

Example:

false

asset
string

Human-readable asset code (e.g. BTC, USD).

Example:

"BTC"

asset_class
string

Asset class wire label (e.g. currency, tokenized_asset).

Example:

"currency"

network_info
object

Network metadata for the underlying chain. Carries network name, required confirmations, estimated confirmation time, and a block explorer URL.