fee
Function
Get the transfer, withdraw, bundle fees for the specified token on everPay.
Parameter
{{endpoint}}/fee/{{tokenTag}}
| Query Field | Mandatory | Description | 
|---|---|---|
| tokenTag | YES | The unique identifier of the token, which can be viewed through the info API. | 
Return Fields
| Field | Description | 
|---|---|
| tokenTag | The unique identifier of the token, Generated by combining chainType,symbol,idfrom Token by-. | 
| burnFeeMap | withdrawhandling fee. | 
| transferFee | transferhandling fee. | 
| atomicBundleFee | bundlehandling 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"
        }
    }
}