Skip to main content

fee

Function

Get the transfer, withdraw, bundle fees for the specified token on everPay.

Parameter

{{endpoint}}/fee/{{tokenTag}}

Query FieldMandatoryDescription
tokenTagYESThe unique identifier of the token, which can be viewed through the info API.

Return Fields

FieldDescription
tokenTagThe unique identifier of the token, Generated by combining chainType, symbol, id from Token by -.
burnFeeMapwithdraw handling fee.
transferFeetransfer handling fee.
atomicBundleFeebundle handling fee.

Example

curl --location --request GET 'https://api.everpay.io/fee/ethereum-eth-0x0000000000000000000000000000000000000000'

Example Return

{
"fee":{
"tokenTag":"ethereum-eth-0x0000000000000000000000000000000000000000",
"transferFee":"0",
"bundleFee":"0",
"burnFeeMap":{
"ethereum":"2964000000000000"
}
}
}