Jump to
Ctrl
+
/

Estimate Transfer Fee Tezos

POST
/blockchain-fees/tezos/{network}/estimate-transfer

Returns a fee estimate for a native XTZ transfer between two Tezos accounts.

Path Parameters

network string Required

Represents the name of the blockchain network used; blockchain networks are usually identical as technology and software, but they differ in data, e.g. - "mainnet" is the live network with actual data while networks like "testnet"

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
amount string Required

Amount to transfer (in mutez)

recipient string Required

Recipient Tezos address (tz1/tz2/tz3/KT1)

sender string Required

Sender Tezos address (tz1/tz2/tz3/KT1)

senderPublicKey string Optional

Optional. Sender's base58 public key (edpk/sppk/p2pk*). Required only if the sender's manager_key is unrevealed and the caller wants the reveal op bundled into the estimate.

Response Schema

apiVersion string Required

Specifies the version of the API that incorporates this endpoint.

2024-12-12
requestId string Required

Defines the ID of the request. The requestId is generated by Crypto APIs 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
gasLimit integer Required

Suggested gas limit for the operation

3600
includesReveal boolean Required

True when a reveal operation is required and was included in the estimate

true
storageBurnEstimate integer Required

Storage burn estimate (in mutez)

18
storageLimit integer Required

Suggested storage limit for the operation (bytes)

23
minimumFee object Required
fast string Required

Fast tier minimum fee (in mutez)

3156
slow string Required

Slow tier minimum fee (in mutez)

1850
standard string Required

Standard tier minimum fee (in mutez)

2306
unit string Required

Unit of the fee (mutez)

MUTEZ

Credits Cost

Blockchain protocol Credits for 1 Results
Default Cost 65
Tezos 65
Was this page helpful?
Yes
No
Powered by
Language
URL

{
    "apiVersion": "2024-12-12",
    "requestId": "601c1710034ed6d407996b30",
    "context": "yourExampleString",
    "data": {
        "item": {
            "gasLimit": 3600,
            "includesReveal": true,
            "storageBurnEstimate": 18,
            "storageLimit": 23,
            "minimumFee": {
                "fast": "3156",
                "slow": "1850",
                "standard": "2306",
                "unit": "MUTEZ"
            }
        }
    }
}