Estimate network fee for payout (без создания)
curl --request POST \
--url https://api.example.com/v1/public/payouts/fee-estimate \
--header 'Content-Type: application/json' \
--header 'X-Signature: <api-key>' \
--data '
{
"assetCode": "<string>",
"destinationAddress": "<string>",
"amount": "<string>"
}
'import requests
url = "https://api.example.com/v1/public/payouts/fee-estimate"
payload = {
"assetCode": "<string>",
"destinationAddress": "<string>",
"amount": "<string>"
}
headers = {
"X-Signature": "<api-key>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {'X-Signature': '<api-key>', 'Content-Type': 'application/json'},
body: JSON.stringify({assetCode: '<string>', destinationAddress: '<string>', amount: '<string>'})
};
fetch('https://api.example.com/v1/public/payouts/fee-estimate', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.example.com/v1/public/payouts/fee-estimate",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'assetCode' => '<string>',
'destinationAddress' => '<string>',
'amount' => '<string>'
]),
CURLOPT_HTTPHEADER => [
"Content-Type: application/json",
"X-Signature: <api-key>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://api.example.com/v1/public/payouts/fee-estimate"
payload := strings.NewReader("{\n \"assetCode\": \"<string>\",\n \"destinationAddress\": \"<string>\",\n \"amount\": \"<string>\"\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("X-Signature", "<api-key>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://api.example.com/v1/public/payouts/fee-estimate")
.header("X-Signature", "<api-key>")
.header("Content-Type", "application/json")
.body("{\n \"assetCode\": \"<string>\",\n \"destinationAddress\": \"<string>\",\n \"amount\": \"<string>\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.example.com/v1/public/payouts/fee-estimate")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["X-Signature"] = '<api-key>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"assetCode\": \"<string>\",\n \"destinationAddress\": \"<string>\",\n \"amount\": \"<string>\"\n}"
response = http.request(request)
puts response.read_body{
"networkFee": "1.1",
"resource": {
"kind": "energy",
"amount": 65000
},
"estimatedConfirmationSeconds": 60
}public · payouts
Estimate network fee for payout (без создания)
POST
/
v1
/
public
/
payouts
/
fee-estimate
Estimate network fee for payout (без создания)
curl --request POST \
--url https://api.example.com/v1/public/payouts/fee-estimate \
--header 'Content-Type: application/json' \
--header 'X-Signature: <api-key>' \
--data '
{
"assetCode": "<string>",
"destinationAddress": "<string>",
"amount": "<string>"
}
'import requests
url = "https://api.example.com/v1/public/payouts/fee-estimate"
payload = {
"assetCode": "<string>",
"destinationAddress": "<string>",
"amount": "<string>"
}
headers = {
"X-Signature": "<api-key>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {'X-Signature': '<api-key>', 'Content-Type': 'application/json'},
body: JSON.stringify({assetCode: '<string>', destinationAddress: '<string>', amount: '<string>'})
};
fetch('https://api.example.com/v1/public/payouts/fee-estimate', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.example.com/v1/public/payouts/fee-estimate",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'assetCode' => '<string>',
'destinationAddress' => '<string>',
'amount' => '<string>'
]),
CURLOPT_HTTPHEADER => [
"Content-Type: application/json",
"X-Signature: <api-key>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://api.example.com/v1/public/payouts/fee-estimate"
payload := strings.NewReader("{\n \"assetCode\": \"<string>\",\n \"destinationAddress\": \"<string>\",\n \"amount\": \"<string>\"\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("X-Signature", "<api-key>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://api.example.com/v1/public/payouts/fee-estimate")
.header("X-Signature", "<api-key>")
.header("Content-Type", "application/json")
.body("{\n \"assetCode\": \"<string>\",\n \"destinationAddress\": \"<string>\",\n \"amount\": \"<string>\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.example.com/v1/public/payouts/fee-estimate")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["X-Signature"] = '<api-key>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"assetCode\": \"<string>\",\n \"destinationAddress\": \"<string>\",\n \"amount\": \"<string>\"\n}"
response = http.request(request)
puts response.read_body{
"networkFee": "1.1",
"resource": {
"kind": "energy",
"amount": 65000
},
"estimatedConfirmationSeconds": 60
}Authorizations
HMAC-SHA256-Hex(timestamp + "." + raw_body, api_secret)
Response
200 - application/json
Оценка комиссии сети в native-единицах (string).
Example:
"1.1"
Доп. ресурс: energy (TRON) / gas (EVM) / bytes (UTXO) / none.
Example:
{ "kind": "energy", "amount": 65000 }
Грубая оценка времени подтверждения (сек).
Example:
60
⌘I