get
https://api.liquiditytech.com/api/v1/broker/feeRate
This endpoint returns the current trading fee schedule for a specific broker portfolio on each exchange and instrument type.
For every venue/market it provides the default maker/taker fee rates, effective date, fee level, and optional symbol groups with customized fees.
If no portfolioId or portfolioIds is provided, the API returns the fee schedule of the main portfolio.
If a single portfolioId is provided, the API returns the combined fee schedule of that portfolioId and the main portfolio.
If multiple portfolioIds are provided (comma-separated, up to 20 IDs), the API returns the fee schedule for this set of portfolios.
Request
| Name | Type | Description |
|---|---|---|
| exchange | String | Exchange / venue, e.g. BINANCE, OKX, EDX. If empty, returns fee schedules for all supported exchanges for the given portfolio scope. |
| portfolio | String | Single portfolio ID. If set (and portfolios is empty), the API returns the fee schedule for this portfolio plus the main account. |
| portfolios | String | Multiple portfolio IDs, comma-separated (e.g. "1001,1002,1003"). Up to 20 portfolio IDs are supported. If set, the API returns the fee schedule for this set of portfolios. |
| instType | String | Instrument type, e.g. SPOT, PERP. If empty, returns all instrument types. |
Response
| Name | Type | Description |
|---|---|---|
| portfolioId | String | Portfolio ID to which this fee configuration applies. |
| exchange | String | Exchange / venue, e.g. BINANCE, OKX, EDX. |
| instType | String | Instrument type, e.g. SPOT, PERP. |
| effDate | String | Effective date of this fee schedule, in yyyyMMdd format (e.g. 20251125). |
| maker | String | Deprecated. Kept only for backward compatibility with legacy responses. Actual maker fee should be read from groupList[].makerFee. |
| taker | String | Deprecated. Kept only for backward compatibility with legacy responses. Actual taker fee should be read from groupList[].takerFee. |
| level | String | Fee level / tier of the portfolio on this venue. |
| groupList | Array | Symbol fee groups under this venue & instrument type. |
| groupList[].groupName | String | Group name, e.g. A, B, C, D. |
| groupList[].takerFee | String | Taker fee rate for this symbol group. |
| groupList[].makerFee | String | Maker fee rate for this symbol group. |
| groupList[].symList | Array | List of symbols that belong to this group. |
