Prepare an unsigned native XTZ transfer from an address. The address does not have to belong to a wallet. The response returns the forged unsigned operation bytes (ready for the signer) together with the branch, counter, fee, gas and storage limits. When the source account is unrevealed and a public key is supplied, a reveal operation is prepended. Amounts are denominated in mutez (1 XTZ = 1,000,000 mutez).
Represents the name of the blockchain network used; "mainnet" is the live network with actual data while the others are test networks.
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.
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.
Sender's Tezos address (tz1/tz2/tz3). The source of the transfer.
Recipient's Tezos address.
Amount to send, in mutez (1 XTZ = 1,000,000 mutez), as an integer string.
Sender's public key. Required only when the source account is unrevealed - a reveal operation is then prepended.
Fee configuration.
Fee priority - slow, standard or fast. Selects the priority fee tier.
Specifies the version of the API that incorporates this endpoint.
Defines the ID of the request. The requestId is generated by Crypto APIs and it's unique for every request.
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.
The source (sender) address.
The destination (recipient) address.
The transfer amount in mutez.
The head block hash the operation is anchored to.
The source account's operation counter (current on-chain counter + 1).
The estimated transaction fee.
The fee amount, in the base denomination.
The fee denomination (mutez).
The suggested gas limit.
The suggested storage limit.
The forged UNSIGNED operation bytes (hex), ready for the signer.
True when a reveal operation was prepended (the source was unrevealed).
| Blockchain protocol | Credits for 1 Results |
| Default Cost | 78 |
| Tezos | 78 |
API Key
{
"context": "yourExampleString",
"data": {
"item": {
"fromAddress": "tz1YWK1gDPQx9N1Jh4JnmVre7xN6xhGGM4FN",
"toAddress": "tz1burnburnburnburnburnburnburjAYjjX",
"amount": "1000000",
"fromPublicKey": "edpkuBknW28nMH1eeUysTaXmQBHfa9WgTUxs95E7XLPTHK83MMkWnq",
"feeOptions": {
"priority": "standard"
}
}
}
}
{
"apiVersion": "2024-12-12",
"requestId": "601c1710034ed6d407996b30",
"context": "yourExampleString",
"data": {
"item": {
"source": "tz1YWK1gDPQx9N1Jh4JnmVre7xN6xhGGM4FN",
"destination": "tz1burnburnburnburnburnburnburjAYjjX",
"amount": "1000000",
"branch": "BLc1BjrQ7ByvHW1p4A5B3nX1nB5Y7pT2xY3zB9fD1hK6mN8pQr",
"counter": "12345678",
"fee": {
"amount": "5000",
"unit": "mutez"
},
"gasLimit": "1451",
"storageLimit": "257",
"forgedOperation": "e655b1a97c6b3e6e0b7b02d7e2e3f4a5b6c7d8e9f0a1b2c3d4e5f60718293a4b5c6d7e8f90",
"revealRequired": false
}
}
}