OKX GET /api/v5/account/trade-fee now returns maker/taker fee rates in the feeGroup array.
The current OKXFeeRate model does not include this field, so the actual fee rate for a specific groupId cannot be retrieved.
Example response:
{
"feeGroup": [
{
"groupId": "1",
"maker": "-0.0003",
"taker": "-0.0003"
}
]
}
Could you please add support for feeGroup to OKXFeeRate?
OKX GET
/api/v5/account/trade-feenow returns maker/taker fee rates in thefeeGrouparray.The current OKXFeeRate model does not include this field, so the actual fee rate for a specific groupId cannot be retrieved.
Example response:
{ "feeGroup": [ { "groupId": "1", "maker": "-0.0003", "taker": "-0.0003" } ] }Could you please add support for feeGroup to OKXFeeRate?