Skip to main content
GET
/
v0
/
insto
/
custody
/
vaults
/
{vault_id}
/
transactions
List transactions
curl --request GET \
  --url https://api.kraken.com/v0/insto/custody/vaults/{vault_id}/transactions \
  --header 'api-key: <api-key>' \
  --header 'api-nonce: <api-key>' \
  --header 'api-otp: <api-key>' \
  --header 'api-sign: <api-key>'
{
  "transactions": [
    {
      "id": "TXABCDE-FGHIJ-KLMNO2",
      "type": "deposit",
      "status": "completed",
      "asset": "BTC",
      "asset_class": "currency",
      "amount": "1.25",
      "time": "2024-05-14T22:13:20.000Z",
      "transaction_hash": "0x4a7d1ed414474e4033ac29ccb8653d9b00d3f1c9a3b7e5d2c8f6a4b1e9d7c5a3",
      "ref_id": "FTABCDE-FGHIJ-KLMNO2",
      "fee": {
        "asset": "BTC",
        "asset_class": "currency",
        "amount": "0.01"
      },
      "extension_type": "post_trade_settlement"
    }
  ],
  "next_cursor": "eyJvZmZzZXQiOjI1fQ=="
}

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

page_size
integer<int32>

Maximum number of transactions to return per page.

Example:

25

types
string[]

Filter by transaction type (e.g. deposit, withdrawal). OR-ed when multiple values are supplied.

assets
object[]

Filter by asset. Each entry supplies asset and asset_class. OR-ed when multiple values are supplied.

order
string

Sort order for results. One of asc or desc. Defaults to desc.

Example:

"desc"

cursor
string

Opaque pagination cursor from a prior response's next_cursor field.

Example:

"eyJvZmZzZXQiOjI1fQ=="

Response

OK. Returns a page of transactions for the vault.

transactions
object[]
required

Transactions matching the supplied filters, ordered per order.

next_cursor
string

Opaque cursor for the next page. Omitted when there are no further results.

Example:

"eyJvZmZzZXQiOjI1fQ=="