Jump to
Ctrl
+
/

Estimate Approximate Transaction Fee

POST
/vaults/{vaultId}/{blockchain}/{network}/approximate-fee

Through this endpoint, customers can estimate the approximate fee for UTXO-based blockchains and EVM-based blockchains. It helps users understand the potential cost of executing a transaction before initiating it.

Path Parameters

blockchain string Required

Blockchain string full name representation (eg. ethereum, bitcoin, litecoin, tron).

network string Required

Network string full name representation (eg. mainnet, testnet).

vaultId string Required

Sender's vault ID.

Query Parameters

context string Optional

In batch situations the user can use the context to correlate responses with requests. This property is present regardless of whether the response was successful or returned as an error. context is specified by the user.

Request Body Schema application/json

context string Optional

In batch situations the user can use the context to correlate responses with requests. This property is present regardless of whether the response was successful or returned as an error. context is specified by the user.

data object Required
item object Required
feePriority string Optional

Fee priority of the transaction - SLOW, STANDARD, FAST. Not applicable for Tron.

prepareStrategy string Optional

Strategy for preparing transaction - minimize_dust or optimize_size. Required for UTXO-based transactions.

recipients array Items (object) Required

Required. List of destination addresses.

address string Required

Address of the destination.

amount string Required

Amount to transfer.

senders array Items (object) Optional

Required for EVM-based transactions. Not applicable for UTXO-based transactions.

address string Optional

Required for EVM-based transactions.

tokenIdentifier string Optional

The contract address. Required only for EVM-based token transactions. Not applicable for UTXO and XRP.

Response Schema

apiVersion string Required

Specifies the version of the API that incorporates this endpoint.

2024-05-09
requestId string Required

Defines the ID of the request. The requestId is generated by Vaultody and it's unique for every request.

601c1710034ed6d407996b30
context string Optional

In batch situations the user can use the context to correlate responses with requests. This property is present regardless of whether the response was successful or returned as an error. context is specified by the user.

yourExampleString
data object Required
item object Required
errorMessage string Required

The message of the error if such occurred.

INSUFFICIENT_FUNDS
feeInNative string Required

The calculated fee in blockchain native currency. Bitcoin for BTC, ETH for Ethereum etc.

0.00001698
maxAmount string Optional

For UTXO-based transactions. The max amount you can send from the vault with a single transaction request.

10
Was this page helpful?
Yes
No
Powered by
Language
URL

{
    "apiVersion": "2024-05-09",
    "requestId": "601c1710034ed6d407996b30",
    "context": "yourExampleString",
    "data": {
        "item": {
            "errorMessage": "INSUFFICIENT_FUNDS",
            "feeInNative": "0.00001698",
            "maxAmount": "10"
        }
    }
}