Get Fee and Tax
Retrieves information about a specific Store.
Live:
POST https://api.ezeebit.com/open/api/v1/feeAndTax/query
UAT:
POST https://dev-api.ezeebit.com/open/api/v1/feeAndTax/query
Headers
Name
Type
Required
Value
Content-Type
string
Y
application/json
Ezeebit-Timestamp
long
Y
UnixTimestamp in milliseconds
Ezeebit-Nonce
string
Y
must be 32 digits
Ezeebit-Certificate-SN
string
Y
API key issued by Ezeebit Pay system
Ezeebit-Signature
string
Y
this should use SHA512, and be in upper case
Response
{
"code": 200,
"msg": "success",
"data": [
{
"feeAndTaxId": "5c2f621313c44225ac53ea292d70e434",
"name": "Test",
"cashCollectionServiceCharge": 0.0100,
"cashCollectionTax": 0.0100,
"cryptoCollectionServiceCharge": 0.0100,
"cryptoCollectionTax": 0.0100,
"taxMethods": 1,
"addTime": 1748508630231
},
{
"feeAndTaxId": "474746e99a554584afb418f9ba3d3cc3",
"name": "Test Fee1",
"cashCollectionServiceCharge": 0.0000,
"cashCollectionTax": 0.0000,
"cryptoCollectionServiceCharge": 0.0000,
"cryptoCollectionTax": 0.1500,
"taxMethods": 1,
"addTime": 1741522690801
},
{
"feeAndTaxId": "14f86679624d48c3b8896b9cb0ac6e44",
"name": "Test fee",
"cashCollectionServiceCharge": 0.0000,
"cashCollectionTax": 0.0000,
"cryptoCollectionServiceCharge": 0.0000,
"cryptoCollectionTax": 0.1500,
"taxMethods": 1,
"addTime": 1738574919427
}
]
}Last updated