v50

latestOpenAPI 3.0.0The Radix License, Version 1.0raw.githubusercontent.com2026-04-0736336265.6 KB
Transaction

PreValidate deposit of resources to an account

Helper endpoint that allows pre-validation if a deposit of certain resources to a given account can succeed or not. It is only meant for pre-validation usage, it does not guarantee that execution will succeed.

post/transaction/account-deposit-pre-validation

Request body

account_addressstring required

Bech32m-encoded human readable version of the address.

resource_addressesAddress[] required

Example request

{
  "account_address": "<account-address>",
  "resource_addresses": [
    "<resource-address>"
  ]
}

Response

Pre-validation response, including all deciding factors that were used to generate that response.

allows_try_deposit_batchboolean required

Example response

{
  "ledger_state": {
    "network": "<network-name>"
  }
}