Payout estimated fee inquiry
Interface address
POST https://api.tokenpay.me/v1/payanother/estimated_feeInterface parameters
Name
Location
Type
Required
Description
mch_id
body
string
Yes
Merchant ID, example value:12345678
chain
body
string
Yes
Owned public chain, example value:TRON
to_address
body
string
Yes
Collection wallet( Notes: payment wallet is required for the application of payout)
app_id
body
string
Yes
Application ID, example value:8e4b8c2e7cxxxxxxxx1a1cbd3d59e0bd
Interface return
Name
Type
Required
Description
msg
string
true
Status description
request_id
string
true
Request ID
data
object
false
Data object
to_address
string
Collection wallet( Notes: payment wallet is required for the application of payout)
fee
string
fee
app_id
string
Application ID, example value:8e4b8c2e7cxxxxxxxx1a1cbd3d59e0bd
Return example
{
"code": 0,
"msg": "ok",
"request_id": "0f262d68-a7bc-4ff4-beeb-994a1e6bcd53",
"data": {
"chain": "TRON",
"currency": "USDT",
"to_address": "TPKcSZqWWAJyE7KTKUveSfgWM75sZrr9JG",
"fee": "2500000",
"decimals": 6
}
}
Example code
curl --location --request POST 'https://api.tokenpay.me/v1/payanother/estimated_fee'
--header 'Authorization: '
--header 'User-Agent: tokenpay API (https://tokenpay.me)'
--header 'Content-Type: application/json'
--data-raw ''package main
import (
"fmt"
"strings"
"net/http"
"io/ioutil"
)
func main() {
url := "https://api.tokenpay.me/v1/payanother/estimated_fee"
method := "POST"
payload := strings.NewReader(`<body data here>`)
client := &http.Client {
}
req, err := http.NewRequest(method, url, payload)
if err != nil {
fmt.Println(err)
return
}
req.Header.Add("Authorization", "<Authorization>")
req.Header.Add("User-Agent", "tokenpay API (https://tokenpay.me)")
req.Header.Add("Content-Type", "application/json")
res, err := client.Do(req)
if err != nil {
fmt.Println(err)
return
}
defer res.Body.Close()
body, err := ioutil.ReadAll(res.Body)
if err != nil {
fmt.Println(err)
return
}
fmt.Println(string(body))
}<?php
$curl = curl_init();
curl_setopt_array($curl, array(
CURLOPT_URL => 'https://api.tokenpay.me/v1/payanother/estimated_fee',
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => '',
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 0,
CURLOPT_FOLLOWLOCATION => true,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => 'POST',
CURLOPT_POSTFIELDS =>'<body data here>',
CURLOPT_HTTPHEADER => array(
'Authorization: <Authorization>',
'User-Agent: tokenpay API (https://tokenpay.meo)',
'Content-Type: application/json'
),
));
$response = curl_exec($curl);
curl_close($curl);
echo $response;import http.client
import json
conn = http.client.HTTPSConnection("https://api.tokenpay.me")
payload = "<body data here>"
headers = {
'Authorization': '<Authorization>',
'User-Agent': 'tokenpay API (https://tokenpay.me)',
'Content-Type': 'application/json'
}
conn.request("POST", "/v1/payanother/estimated_fee", payload, headers)
res = conn.getresponse()
data = res.read()
print(data.decode("utf-8"))OkHttpClient client = new OkHttpClient().newBuilder()
.build();
MediaType mediaType = MediaType.parse("application/json");
RequestBody body = RequestBody.create(mediaType, "<body data here>");
Request request = new Request.Builder()
.url("https://api.tokenpay.me/v1/payanother/estimated_fee")
.method("POST", body)
.addHeader("Authorization", "<Authorization>")
.addHeader("User-Agent", "tokenpay API (https://tokenpay.me)")
.addHeader("Content-Type", "application/json")
.build();
Response response = client.newCall(request).execute();Last updated