Appearance
Get trade fees
GET
/v1/account/fees/trade
Returns the list of all currency pairs and their respective fees per order type maker, taker and simple.
Authorizations
apiKey
Your API key
Type
API Key (header: X-VALR-API-KEY)
apiSignature
HMAC SHA512 signature of the request (see Authentication section)
Type
API Key (header: X-VALR-SIGNATURE)
apiTimestamp
Request timestamp in milliseconds
Type
API Key (header: X-VALR-TIMESTAMP)
Responses
Trade fees retrieved successfully
application/json
JSON
[
{
"currencyPair": "ETHBTC",
"makerPercentage": "0.08",
"takerPercentage": "0.1",
"simplePercentage": "1.6"
},
{
"currencyPair": "BTCUSDT",
"makerPercentage": "0.08",
"takerPercentage": "0.1",
"simplePercentage": "1.6"
}
]