feat(): added links to endpoint map

This commit is contained in:
Jerko J
2024-10-15 16:38:27 +02:00
parent 599ba5ad8c
commit bb6d4473fb

View File

@@ -48,162 +48,162 @@ This table includes all endpoints from the official Exchange API docs and corres
| Function | AUTH | HTTP Method | Endpoint | | Function | AUTH | HTTP Method | Endpoint |
| -------- | :------: | :------: | -------- | | -------- | :------: | :------: | -------- |
| `fetchServerTime()` | | GET | `/v5/market/time` | | [fetchServerTime()](https://github.com/tiagosiebler/bybit-api/blob/master/src/rest-client-v5.ts#L208) | | GET | `/v5/market/time` |
| `getServerTime()` | | GET | `/v5/market/time` | | [getServerTime()](https://github.com/tiagosiebler/bybit-api/blob/master/src/rest-client-v5.ts#L213) | | GET | `/v5/market/time` |
| `requestDemoTradingFunds()` | :closed_lock_with_key: | POST | `/v5/account/demo-apply-money` | | [requestDemoTradingFunds()](https://github.com/tiagosiebler/bybit-api/blob/master/src/rest-client-v5.ts#L219) | :closed_lock_with_key: | POST | `/v5/account/demo-apply-money` |
| `getKline()` | | GET | `/v5/market/kline` | | [getKline()](https://github.com/tiagosiebler/bybit-api/blob/master/src/rest-client-v5.ts#L234) | | GET | `/v5/market/kline` |
| `getMarkPriceKline()` | | GET | `/v5/market/mark-price-kline` | | [getMarkPriceKline()](https://github.com/tiagosiebler/bybit-api/blob/master/src/rest-client-v5.ts#L249) | | GET | `/v5/market/mark-price-kline` |
| `getIndexPriceKline()` | | GET | `/v5/market/index-price-kline` | | [getIndexPriceKline()](https://github.com/tiagosiebler/bybit-api/blob/master/src/rest-client-v5.ts#L264) | | GET | `/v5/market/index-price-kline` |
| `getPremiumIndexPriceKline()` | | GET | `/v5/market/premium-index-price-kline` | | [getPremiumIndexPriceKline()](https://github.com/tiagosiebler/bybit-api/blob/master/src/rest-client-v5.ts#L279) | | GET | `/v5/market/premium-index-price-kline` |
| `getOrderbook()` | | GET | `/v5/market/orderbook` | | [getOrderbook()](https://github.com/tiagosiebler/bybit-api/blob/master/src/rest-client-v5.ts#L305) | | GET | `/v5/market/orderbook` |
| `getTickers()` | | GET | `/v5/market/tickers` | | [getTickers()](https://github.com/tiagosiebler/bybit-api/blob/master/src/rest-client-v5.ts#L311) | | GET | `/v5/market/tickers` |
| `getFundingRateHistory()` | | GET | `/v5/market/funding/history` | | [getFundingRateHistory()](https://github.com/tiagosiebler/bybit-api/blob/master/src/rest-client-v5.ts#L349) | | GET | `/v5/market/funding/history` |
| `getPublicTradingHistory()` | | GET | `/v5/market/recent-trade` | | [getPublicTradingHistory()](https://github.com/tiagosiebler/bybit-api/blob/master/src/rest-client-v5.ts#L364) | | GET | `/v5/market/recent-trade` |
| `getOpenInterest()` | | GET | `/v5/market/open-interest` | | [getOpenInterest()](https://github.com/tiagosiebler/bybit-api/blob/master/src/rest-client-v5.ts#L377) | | GET | `/v5/market/open-interest` |
| `getHistoricalVolatility()` | | GET | `/v5/market/historical-volatility` | | [getHistoricalVolatility()](https://github.com/tiagosiebler/bybit-api/blob/master/src/rest-client-v5.ts#L387) | | GET | `/v5/market/historical-volatility` |
| `getInsurance()` | | GET | `/v5/market/insurance` | | [getInsurance()](https://github.com/tiagosiebler/bybit-api/blob/master/src/rest-client-v5.ts#L398) | | GET | `/v5/market/insurance` |
| `getRiskLimit()` | | GET | `/v5/market/risk-limit` | | [getRiskLimit()](https://github.com/tiagosiebler/bybit-api/blob/master/src/rest-client-v5.ts#L409) | | GET | `/v5/market/risk-limit` |
| `getOptionDeliveryPrice()` | | GET | `/v5/market/delivery-price` | | [getOptionDeliveryPrice()](https://github.com/tiagosiebler/bybit-api/blob/master/src/rest-client-v5.ts#L424) | | GET | `/v5/market/delivery-price` |
| `getDeliveryPrice()` | | GET | `/v5/market/delivery-price` | | [getDeliveryPrice()](https://github.com/tiagosiebler/bybit-api/blob/master/src/rest-client-v5.ts#L437) | | GET | `/v5/market/delivery-price` |
| `getLongShortRatio()` | | GET | `/v5/market/account-ratio` | | [getLongShortRatio()](https://github.com/tiagosiebler/bybit-api/blob/master/src/rest-client-v5.ts#L443) | | GET | `/v5/market/account-ratio` |
| `submitOrder()` | :closed_lock_with_key: | POST | `/v5/order/create` | | [submitOrder()](https://github.com/tiagosiebler/bybit-api/blob/master/src/rest-client-v5.ts#L455) | :closed_lock_with_key: | POST | `/v5/order/create` |
| `amendOrder()` | :closed_lock_with_key: | POST | `/v5/order/amend` | | [amendOrder()](https://github.com/tiagosiebler/bybit-api/blob/master/src/rest-client-v5.ts#L461) | :closed_lock_with_key: | POST | `/v5/order/amend` |
| `cancelOrder()` | :closed_lock_with_key: | POST | `/v5/order/cancel` | | [cancelOrder()](https://github.com/tiagosiebler/bybit-api/blob/master/src/rest-client-v5.ts#L467) | :closed_lock_with_key: | POST | `/v5/order/cancel` |
| `getActiveOrders()` | :closed_lock_with_key: | GET | `/v5/order/realtime` | | [getActiveOrders()](https://github.com/tiagosiebler/bybit-api/blob/master/src/rest-client-v5.ts#L476) | :closed_lock_with_key: | GET | `/v5/order/realtime` |
| `cancelAllOrders()` | :closed_lock_with_key: | POST | `/v5/order/cancel-all` | | [cancelAllOrders()](https://github.com/tiagosiebler/bybit-api/blob/master/src/rest-client-v5.ts#L482) | :closed_lock_with_key: | POST | `/v5/order/cancel-all` |
| `getHistoricOrders()` | :closed_lock_with_key: | GET | `/v5/order/history` | | [getHistoricOrders()](https://github.com/tiagosiebler/bybit-api/blob/master/src/rest-client-v5.ts#L493) | :closed_lock_with_key: | GET | `/v5/order/history` |
| `batchSubmitOrders()` | :closed_lock_with_key: | POST | `/v5/order/create-batch` | | [batchSubmitOrders()](https://github.com/tiagosiebler/bybit-api/blob/master/src/rest-client-v5.ts#L511) | :closed_lock_with_key: | POST | `/v5/order/create-batch` |
| `batchAmendOrders()` | :closed_lock_with_key: | POST | `/v5/order/amend-batch` | | [batchAmendOrders()](https://github.com/tiagosiebler/bybit-api/blob/master/src/rest-client-v5.ts#L531) | :closed_lock_with_key: | POST | `/v5/order/amend-batch` |
| `batchCancelOrders()` | :closed_lock_with_key: | POST | `/v5/order/cancel-batch` | | [batchCancelOrders()](https://github.com/tiagosiebler/bybit-api/blob/master/src/rest-client-v5.ts#L551) | :closed_lock_with_key: | POST | `/v5/order/cancel-batch` |
| `getSpotBorrowCheck()` | :closed_lock_with_key: | GET | `/v5/order/spot-borrow-check` | | [getSpotBorrowCheck()](https://github.com/tiagosiebler/bybit-api/blob/master/src/rest-client-v5.ts#L568) | :closed_lock_with_key: | GET | `/v5/order/spot-borrow-check` |
| `setDisconnectCancelAllWindow()` | :closed_lock_with_key: | POST | `/v5/order/disconnected-cancel-all` | | [setDisconnectCancelAllWindow()](https://github.com/tiagosiebler/bybit-api/blob/master/src/rest-client-v5.ts#L589) | :closed_lock_with_key: | POST | `/v5/order/disconnected-cancel-all` |
| `setDisconnectCancelAllWindowV2()` | :closed_lock_with_key: | POST | `/v5/order/disconnected-cancel-all` | | [setDisconnectCancelAllWindowV2()](https://github.com/tiagosiebler/bybit-api/blob/master/src/rest-client-v5.ts#L607) | :closed_lock_with_key: | POST | `/v5/order/disconnected-cancel-all` |
| `getPositionInfo()` | :closed_lock_with_key: | GET | `/v5/position/list` | | [getPositionInfo()](https://github.com/tiagosiebler/bybit-api/blob/master/src/rest-client-v5.ts#L631) | :closed_lock_with_key: | GET | `/v5/position/list` |
| `setLeverage()` | :closed_lock_with_key: | POST | `/v5/position/set-leverage` | | [setLeverage()](https://github.com/tiagosiebler/bybit-api/blob/master/src/rest-client-v5.ts#L646) | :closed_lock_with_key: | POST | `/v5/position/set-leverage` |
| `switchIsolatedMargin()` | :closed_lock_with_key: | POST | `/v5/position/switch-isolated` | | [switchIsolatedMargin()](https://github.com/tiagosiebler/bybit-api/blob/master/src/rest-client-v5.ts#L659) | :closed_lock_with_key: | POST | `/v5/position/switch-isolated` |
| `setTPSLMode()` | :closed_lock_with_key: | POST | `/v5/position/set-tpsl-mode` | | [setTPSLMode()](https://github.com/tiagosiebler/bybit-api/blob/master/src/rest-client-v5.ts#L672) | :closed_lock_with_key: | POST | `/v5/position/set-tpsl-mode` |
| `switchPositionMode()` | :closed_lock_with_key: | POST | `/v5/position/switch-mode` | | [switchPositionMode()](https://github.com/tiagosiebler/bybit-api/blob/master/src/rest-client-v5.ts#L687) | :closed_lock_with_key: | POST | `/v5/position/switch-mode` |
| `setRiskLimit()` | :closed_lock_with_key: | POST | `/v5/position/set-risk-limit` | | [setRiskLimit()](https://github.com/tiagosiebler/bybit-api/blob/master/src/rest-client-v5.ts#L700) | :closed_lock_with_key: | POST | `/v5/position/set-risk-limit` |
| `setTradingStop()` | :closed_lock_with_key: | POST | `/v5/position/trading-stop` | | [setTradingStop()](https://github.com/tiagosiebler/bybit-api/blob/master/src/rest-client-v5.ts#L715) | :closed_lock_with_key: | POST | `/v5/position/trading-stop` |
| `setAutoAddMargin()` | :closed_lock_with_key: | POST | `/v5/position/set-auto-add-margin` | | [setAutoAddMargin()](https://github.com/tiagosiebler/bybit-api/blob/master/src/rest-client-v5.ts#L726) | :closed_lock_with_key: | POST | `/v5/position/set-auto-add-margin` |
| `addOrReduceMargin()` | :closed_lock_with_key: | POST | `/v5/position/add-margin` | | [addOrReduceMargin()](https://github.com/tiagosiebler/bybit-api/blob/master/src/rest-client-v5.ts#L738) | :closed_lock_with_key: | POST | `/v5/position/add-margin` |
| `getExecutionList()` | :closed_lock_with_key: | GET | `/v5/execution/list` | | [getExecutionList()](https://github.com/tiagosiebler/bybit-api/blob/master/src/rest-client-v5.ts#L750) | :closed_lock_with_key: | GET | `/v5/execution/list` |
| `getClosedPnL()` | :closed_lock_with_key: | GET | `/v5/position/closed-pnl` | | [getClosedPnL()](https://github.com/tiagosiebler/bybit-api/blob/master/src/rest-client-v5.ts#L762) | :closed_lock_with_key: | GET | `/v5/position/closed-pnl` |
| `movePosition()` | :closed_lock_with_key: | POST | `/v5/position/move-positions` | | [movePosition()](https://github.com/tiagosiebler/bybit-api/blob/master/src/rest-client-v5.ts#L781) | :closed_lock_with_key: | POST | `/v5/position/move-positions` |
| `getMovePositionHistory()` | :closed_lock_with_key: | GET | `/v5/position/move-history` | | [getMovePositionHistory()](https://github.com/tiagosiebler/bybit-api/blob/master/src/rest-client-v5.ts#L792) | :closed_lock_with_key: | GET | `/v5/position/move-history` |
| `confirmNewRiskLimit()` | :closed_lock_with_key: | POST | `/v5/position/confirm-pending-mmr` | | [confirmNewRiskLimit()](https://github.com/tiagosiebler/bybit-api/blob/master/src/rest-client-v5.ts#L811) | :closed_lock_with_key: | POST | `/v5/position/confirm-pending-mmr` |
| `getPreUpgradeOrderHistory()` | :closed_lock_with_key: | GET | `/v5/pre-upgrade/order/history` | | [getPreUpgradeOrderHistory()](https://github.com/tiagosiebler/bybit-api/blob/master/src/rest-client-v5.ts#L831) | :closed_lock_with_key: | GET | `/v5/pre-upgrade/order/history` |
| `getPreUpgradeTradeHistory()` | :closed_lock_with_key: | GET | `/v5/pre-upgrade/execution/list` | | [getPreUpgradeTradeHistory()](https://github.com/tiagosiebler/bybit-api/blob/master/src/rest-client-v5.ts#L846) | :closed_lock_with_key: | GET | `/v5/pre-upgrade/execution/list` |
| `getPreUpgradeClosedPnl()` | :closed_lock_with_key: | GET | `/v5/pre-upgrade/position/closed-pnl` | | [getPreUpgradeClosedPnl()](https://github.com/tiagosiebler/bybit-api/blob/master/src/rest-client-v5.ts#L857) | :closed_lock_with_key: | GET | `/v5/pre-upgrade/position/closed-pnl` |
| `getPreUpgradeTransactions()` | :closed_lock_with_key: | GET | `/v5/pre-upgrade/account/transaction-log` | | [getPreUpgradeTransactions()](https://github.com/tiagosiebler/bybit-api/blob/master/src/rest-client-v5.ts#L871) | :closed_lock_with_key: | GET | `/v5/pre-upgrade/account/transaction-log` |
| `getPreUpgradeOptionDeliveryRecord()` | :closed_lock_with_key: | GET | `/v5/pre-upgrade/asset/delivery-record` | | [getPreUpgradeOptionDeliveryRecord()](https://github.com/tiagosiebler/bybit-api/blob/master/src/rest-client-v5.ts#L888) | :closed_lock_with_key: | GET | `/v5/pre-upgrade/asset/delivery-record` |
| `getPreUpgradeUSDCSessionSettlements()` | :closed_lock_with_key: | GET | `/v5/pre-upgrade/asset/settlement-record` | | [getPreUpgradeUSDCSessionSettlements()](https://github.com/tiagosiebler/bybit-api/blob/master/src/rest-client-v5.ts#L902) | :closed_lock_with_key: | GET | `/v5/pre-upgrade/asset/settlement-record` |
| `getWalletBalance()` | :closed_lock_with_key: | GET | `/v5/account/wallet-balance` | | [getWalletBalance()](https://github.com/tiagosiebler/bybit-api/blob/master/src/rest-client-v5.ts#L923) | :closed_lock_with_key: | GET | `/v5/account/wallet-balance` |
| `upgradeToUnifiedAccount()` | :closed_lock_with_key: | POST | `/v5/account/upgrade-to-uta` | | [upgradeToUnifiedAccount()](https://github.com/tiagosiebler/bybit-api/blob/master/src/rest-client-v5.ts#L934) | :closed_lock_with_key: | POST | `/v5/account/upgrade-to-uta` |
| `getBorrowHistory()` | :closed_lock_with_key: | GET | `/v5/account/borrow-history` | | [getBorrowHistory()](https://github.com/tiagosiebler/bybit-api/blob/master/src/rest-client-v5.ts#L945) | :closed_lock_with_key: | GET | `/v5/account/borrow-history` |
| `repayLiability()` | :closed_lock_with_key: | POST | `/v5/account/quick-repayment` | | [repayLiability()](https://github.com/tiagosiebler/bybit-api/blob/master/src/rest-client-v5.ts#L959) | :closed_lock_with_key: | POST | `/v5/account/quick-repayment` |
| `setCollateralCoin()` | :closed_lock_with_key: | POST | `/v5/account/set-collateral-switch` | | [setCollateralCoin()](https://github.com/tiagosiebler/bybit-api/blob/master/src/rest-client-v5.ts#L968) | :closed_lock_with_key: | POST | `/v5/account/set-collateral-switch` |
| `batchSetCollateralCoin()` | :closed_lock_with_key: | POST | `/v5/account/set-collateral-switch-batch` | | [batchSetCollateralCoin()](https://github.com/tiagosiebler/bybit-api/blob/master/src/rest-client-v5.ts#L974) | :closed_lock_with_key: | POST | `/v5/account/set-collateral-switch-batch` |
| `getCollateralInfo()` | :closed_lock_with_key: | GET | `/v5/account/collateral-info` | | [getCollateralInfo()](https://github.com/tiagosiebler/bybit-api/blob/master/src/rest-client-v5.ts#L984) | :closed_lock_with_key: | GET | `/v5/account/collateral-info` |
| `getCoinGreeks()` | :closed_lock_with_key: | GET | `/v5/asset/coin-greeks` | | [getCoinGreeks()](https://github.com/tiagosiebler/bybit-api/blob/master/src/rest-client-v5.ts#L993) | :closed_lock_with_key: | GET | `/v5/asset/coin-greeks` |
| `getFeeRate()` | :closed_lock_with_key: | GET | `/v5/account/fee-rate` | | [getFeeRate()](https://github.com/tiagosiebler/bybit-api/blob/master/src/rest-client-v5.ts#L1006) | :closed_lock_with_key: | GET | `/v5/account/fee-rate` |
| `getAccountInfo()` | :closed_lock_with_key: | GET | `/v5/account/info` | | [getAccountInfo()](https://github.com/tiagosiebler/bybit-api/blob/master/src/rest-client-v5.ts#L1015) | :closed_lock_with_key: | GET | `/v5/account/info` |
| `getTransactionLog()` | :closed_lock_with_key: | GET | `/v5/account/transaction-log` | | [getTransactionLog()](https://github.com/tiagosiebler/bybit-api/blob/master/src/rest-client-v5.ts#L1022) | :closed_lock_with_key: | GET | `/v5/account/transaction-log` |
| `getClassicTransactionLogs()` | :closed_lock_with_key: | GET | `/v5/account/contract-transaction-log` | | [getClassicTransactionLogs()](https://github.com/tiagosiebler/bybit-api/blob/master/src/rest-client-v5.ts#L1033) | :closed_lock_with_key: | GET | `/v5/account/contract-transaction-log` |
| `getSMPGroup()` | :closed_lock_with_key: | GET | `/v5/account/smp-group` | | [getSMPGroup()](https://github.com/tiagosiebler/bybit-api/blob/master/src/rest-client-v5.ts#L1044) | :closed_lock_with_key: | GET | `/v5/account/smp-group` |
| `setMarginMode()` | :closed_lock_with_key: | POST | `/v5/account/set-margin-mode` | | [setMarginMode()](https://github.com/tiagosiebler/bybit-api/blob/master/src/rest-client-v5.ts#L1057) | :closed_lock_with_key: | POST | `/v5/account/set-margin-mode` |
| `setSpotHedging()` | :closed_lock_with_key: | POST | `/v5/account/set-hedging-mode` | | [setSpotHedging()](https://github.com/tiagosiebler/bybit-api/blob/master/src/rest-client-v5.ts#L1074) | :closed_lock_with_key: | POST | `/v5/account/set-hedging-mode` |
| `setMMP()` | :closed_lock_with_key: | POST | `/v5/account/mmp-modify` | | [setMMP()](https://github.com/tiagosiebler/bybit-api/blob/master/src/rest-client-v5.ts#L1083) | :closed_lock_with_key: | POST | `/v5/account/mmp-modify` |
| `resetMMP()` | :closed_lock_with_key: | POST | `/v5/account/mmp-reset` | | [resetMMP()](https://github.com/tiagosiebler/bybit-api/blob/master/src/rest-client-v5.ts#L1090) | :closed_lock_with_key: | POST | `/v5/account/mmp-reset` |
| `getMMPState()` | :closed_lock_with_key: | GET | `/v5/account/mmp-state` | | [getMMPState()](https://github.com/tiagosiebler/bybit-api/blob/master/src/rest-client-v5.ts#L1097) | :closed_lock_with_key: | GET | `/v5/account/mmp-state` |
| `getDCPInfo()` | :closed_lock_with_key: | GET | `/v5/account/query-dcp-info` | | [getDCPInfo()](https://github.com/tiagosiebler/bybit-api/blob/master/src/rest-client-v5.ts#L1112) | :closed_lock_with_key: | GET | `/v5/account/query-dcp-info` |
| `getCoinExchangeRecords()` | :closed_lock_with_key: | GET | `/v5/asset/exchange/order-record` | | [getCoinExchangeRecords()](https://github.com/tiagosiebler/bybit-api/blob/master/src/rest-client-v5.ts#L1127) | :closed_lock_with_key: | GET | `/v5/asset/exchange/order-record` |
| `getDeliveryRecord()` | :closed_lock_with_key: | GET | `/v5/asset/delivery-record` | | [getDeliveryRecord()](https://github.com/tiagosiebler/bybit-api/blob/master/src/rest-client-v5.ts#L1141) | :closed_lock_with_key: | GET | `/v5/asset/delivery-record` |
| `getSettlementRecords()` | :closed_lock_with_key: | GET | `/v5/asset/settlement-record` | | [getSettlementRecords()](https://github.com/tiagosiebler/bybit-api/blob/master/src/rest-client-v5.ts#L1152) | :closed_lock_with_key: | GET | `/v5/asset/settlement-record` |
| `getAssetInfo()` | :closed_lock_with_key: | GET | `/v5/asset/transfer/query-asset-info` | | [getAssetInfo()](https://github.com/tiagosiebler/bybit-api/blob/master/src/rest-client-v5.ts#L1166) | :closed_lock_with_key: | GET | `/v5/asset/transfer/query-asset-info` |
| `getAllCoinsBalance()` | :closed_lock_with_key: | GET | `/v5/asset/transfer/query-account-coins-balance` | | [getAllCoinsBalance()](https://github.com/tiagosiebler/bybit-api/blob/master/src/rest-client-v5.ts#L1177) | :closed_lock_with_key: | GET | `/v5/asset/transfer/query-account-coins-balance` |
| `getCoinBalance()` | :closed_lock_with_key: | GET | `/v5/asset/transfer/query-account-coin-balance` | | [getCoinBalance()](https://github.com/tiagosiebler/bybit-api/blob/master/src/rest-client-v5.ts#L1191) | :closed_lock_with_key: | GET | `/v5/asset/transfer/query-account-coin-balance` |
| `getTransferableCoinList()` | :closed_lock_with_key: | GET | `/v5/asset/transfer/query-transfer-coin-list` | | [getTransferableCoinList()](https://github.com/tiagosiebler/bybit-api/blob/master/src/rest-client-v5.ts#L1203) | :closed_lock_with_key: | GET | `/v5/asset/transfer/query-transfer-coin-list` |
| `createInternalTransfer()` | :closed_lock_with_key: | POST | `/v5/asset/transfer/inter-transfer` | | [createInternalTransfer()](https://github.com/tiagosiebler/bybit-api/blob/master/src/rest-client-v5.ts#L1219) | :closed_lock_with_key: | POST | `/v5/asset/transfer/inter-transfer` |
| `getInternalTransferRecords()` | :closed_lock_with_key: | GET | `/v5/asset/transfer/query-inter-transfer-list` | | [getInternalTransferRecords()](https://github.com/tiagosiebler/bybit-api/blob/master/src/rest-client-v5.ts#L1238) | :closed_lock_with_key: | GET | `/v5/asset/transfer/query-inter-transfer-list` |
| `getSubUID()` | :closed_lock_with_key: | GET | `/v5/asset/transfer/query-sub-member-list` | | [getSubUID()](https://github.com/tiagosiebler/bybit-api/blob/master/src/rest-client-v5.ts#L1252) | :closed_lock_with_key: | GET | `/v5/asset/transfer/query-sub-member-list` |
| `enableUniversalTransferForSubUIDs()` | :closed_lock_with_key: | POST | `/v5/asset/transfer/save-transfer-sub-member` | | [enableUniversalTransferForSubUIDs()](https://github.com/tiagosiebler/bybit-api/blob/master/src/rest-client-v5.ts#L1272) | :closed_lock_with_key: | POST | `/v5/asset/transfer/save-transfer-sub-member` |
| `createUniversalTransfer()` | :closed_lock_with_key: | POST | `/v5/asset/transfer/universal-transfer` | | [createUniversalTransfer()](https://github.com/tiagosiebler/bybit-api/blob/master/src/rest-client-v5.ts#L1283) | :closed_lock_with_key: | POST | `/v5/asset/transfer/universal-transfer` |
| `getUniversalTransferRecords()` | :closed_lock_with_key: | GET | `/v5/asset/transfer/query-universal-transfer-list` | | [getUniversalTransferRecords()](https://github.com/tiagosiebler/bybit-api/blob/master/src/rest-client-v5.ts#L1295) | :closed_lock_with_key: | GET | `/v5/asset/transfer/query-universal-transfer-list` |
| `getAllowedDepositCoinInfo()` | | GET | `/v5/asset/deposit/query-allowed-list` | | [getAllowedDepositCoinInfo()](https://github.com/tiagosiebler/bybit-api/blob/master/src/rest-client-v5.ts#L1308) | | GET | `/v5/asset/deposit/query-allowed-list` |
| `setDepositAccount()` | :closed_lock_with_key: | POST | `/v5/asset/deposit/deposit-to-account` | | [setDepositAccount()](https://github.com/tiagosiebler/bybit-api/blob/master/src/rest-client-v5.ts#L1322) | :closed_lock_with_key: | POST | `/v5/asset/deposit/deposit-to-account` |
| `getDepositRecords()` | :closed_lock_with_key: | GET | `/v5/asset/deposit/query-record` | | [getDepositRecords()](https://github.com/tiagosiebler/bybit-api/blob/master/src/rest-client-v5.ts#L1338) | :closed_lock_with_key: | GET | `/v5/asset/deposit/query-record` |
| `getSubAccountDepositRecords()` | :closed_lock_with_key: | GET | `/v5/asset/deposit/query-sub-member-record` | | [getSubAccountDepositRecords()](https://github.com/tiagosiebler/bybit-api/blob/master/src/rest-client-v5.ts#L1353) | :closed_lock_with_key: | GET | `/v5/asset/deposit/query-sub-member-record` |
| `getInternalDepositRecords()` | :closed_lock_with_key: | GET | `/v5/asset/deposit/query-internal-record` | | [getInternalDepositRecords()](https://github.com/tiagosiebler/bybit-api/blob/master/src/rest-client-v5.ts#L1369) | :closed_lock_with_key: | GET | `/v5/asset/deposit/query-internal-record` |
| `getMasterDepositAddress()` | :closed_lock_with_key: | GET | `/v5/asset/deposit/query-address` | | [getMasterDepositAddress()](https://github.com/tiagosiebler/bybit-api/blob/master/src/rest-client-v5.ts#L1381) | :closed_lock_with_key: | GET | `/v5/asset/deposit/query-address` |
| `getSubDepositAddress()` | :closed_lock_with_key: | GET | `/v5/asset/deposit/query-sub-member-address` | | [getSubDepositAddress()](https://github.com/tiagosiebler/bybit-api/blob/master/src/rest-client-v5.ts#L1394) | :closed_lock_with_key: | GET | `/v5/asset/deposit/query-sub-member-address` |
| `querySubMemberAddress()` | :closed_lock_with_key: | GET | `/v5/asset/deposit/query-sub-member-address` | | [querySubMemberAddress()](https://github.com/tiagosiebler/bybit-api/blob/master/src/rest-client-v5.ts#L1412) | :closed_lock_with_key: | GET | `/v5/asset/deposit/query-sub-member-address` |
| `getCoinInfo()` | :closed_lock_with_key: | GET | `/v5/asset/coin/query-info` | | [getCoinInfo()](https://github.com/tiagosiebler/bybit-api/blob/master/src/rest-client-v5.ts#L1427) | :closed_lock_with_key: | GET | `/v5/asset/coin/query-info` |
| `getWithdrawalRecords()` | :closed_lock_with_key: | GET | `/v5/asset/withdraw/query-record` | | [getWithdrawalRecords()](https://github.com/tiagosiebler/bybit-api/blob/master/src/rest-client-v5.ts#L1439) | :closed_lock_with_key: | GET | `/v5/asset/withdraw/query-record` |
| `getWithdrawableAmount()` | :closed_lock_with_key: | GET | `/v5/asset/withdraw/withdrawable-amount` | | [getWithdrawableAmount()](https://github.com/tiagosiebler/bybit-api/blob/master/src/rest-client-v5.ts#L1448) | :closed_lock_with_key: | GET | `/v5/asset/withdraw/withdrawable-amount` |
| `getExchangeEntities()` | :closed_lock_with_key: | GET | `/v5/asset/withdraw/vasp/list` | | [getExchangeEntities()](https://github.com/tiagosiebler/bybit-api/blob/master/src/rest-client-v5.ts#L1459) | :closed_lock_with_key: | GET | `/v5/asset/withdraw/vasp/list` |
| `submitWithdrawal()` | :closed_lock_with_key: | POST | `/v5/asset/withdraw/create` | | [submitWithdrawal()](https://github.com/tiagosiebler/bybit-api/blob/master/src/rest-client-v5.ts#L1472) | :closed_lock_with_key: | POST | `/v5/asset/withdraw/create` |
| `cancelWithdrawal()` | :closed_lock_with_key: | POST | `/v5/asset/withdraw/cancel` | | [cancelWithdrawal()](https://github.com/tiagosiebler/bybit-api/blob/master/src/rest-client-v5.ts#L1483) | :closed_lock_with_key: | POST | `/v5/asset/withdraw/cancel` |
| `getConvertCoins()` | :closed_lock_with_key: | GET | `/v5/asset/exchange/query-coin-list` | | [getConvertCoins()](https://github.com/tiagosiebler/bybit-api/blob/master/src/rest-client-v5.ts#L1492) | :closed_lock_with_key: | GET | `/v5/asset/exchange/query-coin-list` |
| `requestConvertQuote()` | :closed_lock_with_key: | POST | `/v5/asset/exchange/quote-apply` | | [requestConvertQuote()](https://github.com/tiagosiebler/bybit-api/blob/master/src/rest-client-v5.ts#L1503) | :closed_lock_with_key: | POST | `/v5/asset/exchange/quote-apply` |
| `confirmConvertQuote()` | :closed_lock_with_key: | POST | `/v5/asset/exchange/convert-execute` | | [confirmConvertQuote()](https://github.com/tiagosiebler/bybit-api/blob/master/src/rest-client-v5.ts#L1512) | :closed_lock_with_key: | POST | `/v5/asset/exchange/convert-execute` |
| `getConvertStatus()` | :closed_lock_with_key: | GET | `/v5/asset/exchange/convert-result-query` | | [getConvertStatus()](https://github.com/tiagosiebler/bybit-api/blob/master/src/rest-client-v5.ts#L1524) | :closed_lock_with_key: | GET | `/v5/asset/exchange/convert-result-query` |
| `getConvertHistory()` | :closed_lock_with_key: | GET | `/v5/asset/exchange/query-convert-history` | | [getConvertHistory()](https://github.com/tiagosiebler/bybit-api/blob/master/src/rest-client-v5.ts#L1543) | :closed_lock_with_key: | GET | `/v5/asset/exchange/query-convert-history` |
| `createSubMember()` | :closed_lock_with_key: | POST | `/v5/user/create-sub-member` | | [createSubMember()](https://github.com/tiagosiebler/bybit-api/blob/master/src/rest-client-v5.ts#L1563) | :closed_lock_with_key: | POST | `/v5/user/create-sub-member` |
| `createSubUIDAPIKey()` | :closed_lock_with_key: | POST | `/v5/user/create-sub-api` | | [createSubUIDAPIKey()](https://github.com/tiagosiebler/bybit-api/blob/master/src/rest-client-v5.ts#L1575) | :closed_lock_with_key: | POST | `/v5/user/create-sub-api` |
| `getSubUIDList()` | :closed_lock_with_key: | GET | `/v5/user/query-sub-members` | | [getSubUIDList()](https://github.com/tiagosiebler/bybit-api/blob/master/src/rest-client-v5.ts#L1584) | :closed_lock_with_key: | GET | `/v5/user/query-sub-members` |
| `getSubUIDListUnlimited()` | :closed_lock_with_key: | GET | `/v5/user/submembers` | | [getSubUIDListUnlimited()](https://github.com/tiagosiebler/bybit-api/blob/master/src/rest-client-v5.ts#L1593) | :closed_lock_with_key: | GET | `/v5/user/submembers` |
| `getSubAccountAllApiKeys()` | :closed_lock_with_key: | GET | `/v5/user/sub-apikeys` | | [getSubAccountAllApiKeys()](https://github.com/tiagosiebler/bybit-api/blob/master/src/rest-client-v5.ts#L1608) | :closed_lock_with_key: | GET | `/v5/user/sub-apikeys` |
| `setSubUIDFrozenState()` | :closed_lock_with_key: | POST | `/v5/user/frozen-sub-member` | | [setSubUIDFrozenState()](https://github.com/tiagosiebler/bybit-api/blob/master/src/rest-client-v5.ts#L1620) | :closed_lock_with_key: | POST | `/v5/user/frozen-sub-member` |
| `getQueryApiKey()` | :closed_lock_with_key: | GET | `/v5/user/query-api` | | [getQueryApiKey()](https://github.com/tiagosiebler/bybit-api/blob/master/src/rest-client-v5.ts#L1633) | :closed_lock_with_key: | GET | `/v5/user/query-api` |
| `getUIDWalletType()` | :closed_lock_with_key: | GET | `/v5/user/query-api` | | [getUIDWalletType()](https://github.com/tiagosiebler/bybit-api/blob/master/src/rest-client-v5.ts#L1637) | :closed_lock_with_key: | GET | `/v5/user/query-api` |
| `updateMasterApiKey()` | :closed_lock_with_key: | POST | `/v5/user/update-api` | | [updateMasterApiKey()](https://github.com/tiagosiebler/bybit-api/blob/master/src/rest-client-v5.ts#L1654) | :closed_lock_with_key: | POST | `/v5/user/update-api` |
| `updateSubApiKey()` | :closed_lock_with_key: | POST | `/v5/user/update-sub-api` | | [updateSubApiKey()](https://github.com/tiagosiebler/bybit-api/blob/master/src/rest-client-v5.ts#L1668) | :closed_lock_with_key: | POST | `/v5/user/update-sub-api` |
| `deleteMasterApiKey()` | :closed_lock_with_key: | POST | `/v5/user/delete-api` | | [deleteMasterApiKey()](https://github.com/tiagosiebler/bybit-api/blob/master/src/rest-client-v5.ts#L1683) | :closed_lock_with_key: | POST | `/v5/user/delete-api` |
| `deleteSubApiKey()` | :closed_lock_with_key: | POST | `/v5/user/delete-sub-api` | | [deleteSubApiKey()](https://github.com/tiagosiebler/bybit-api/blob/master/src/rest-client-v5.ts#L1697) | :closed_lock_with_key: | POST | `/v5/user/delete-sub-api` |
| `deleteSubMember()` | :closed_lock_with_key: | POST | `/v5/user/del-submember` | | [deleteSubMember()](https://github.com/tiagosiebler/bybit-api/blob/master/src/rest-client-v5.ts#L1710) | :closed_lock_with_key: | POST | `/v5/user/del-submember` |
| `getAffiliateUserInfo()` | :closed_lock_with_key: | GET | `/v5/user/aff-customer-info` | | [getAffiliateUserInfo()](https://github.com/tiagosiebler/bybit-api/blob/master/src/rest-client-v5.ts#L1726) | :closed_lock_with_key: | GET | `/v5/user/aff-customer-info` |
| `getLeveragedTokenInfo()` | | GET | `/v5/spot-lever-token/info` | | [getLeveragedTokenInfo()](https://github.com/tiagosiebler/bybit-api/blob/master/src/rest-client-v5.ts#L1741) | | GET | `/v5/spot-lever-token/info` |
| `getLeveragedTokenMarket()` | | GET | `/v5/spot-lever-token/reference` | | [getLeveragedTokenMarket()](https://github.com/tiagosiebler/bybit-api/blob/master/src/rest-client-v5.ts#L1750) | | GET | `/v5/spot-lever-token/reference` |
| `purchaseSpotLeveragedToken()` | :closed_lock_with_key: | POST | `/v5/spot-lever-token/purchase` | | [purchaseSpotLeveragedToken()](https://github.com/tiagosiebler/bybit-api/blob/master/src/rest-client-v5.ts#L1759) | :closed_lock_with_key: | POST | `/v5/spot-lever-token/purchase` |
| `redeemSpotLeveragedToken()` | :closed_lock_with_key: | POST | `/v5/spot-lever-token/redeem` | | [redeemSpotLeveragedToken()](https://github.com/tiagosiebler/bybit-api/blob/master/src/rest-client-v5.ts#L1768) | :closed_lock_with_key: | POST | `/v5/spot-lever-token/redeem` |
| `getSpotLeveragedTokenOrderHistory()` | :closed_lock_with_key: | GET | `/v5/spot-lever-token/order-record` | | [getSpotLeveragedTokenOrderHistory()](https://github.com/tiagosiebler/bybit-api/blob/master/src/rest-client-v5.ts#L1777) | :closed_lock_with_key: | GET | `/v5/spot-lever-token/order-record` |
| `getVIPMarginData()` | | GET | `/v5/spot-margin-trade/data` | | [getVIPMarginData()](https://github.com/tiagosiebler/bybit-api/blob/master/src/rest-client-v5.ts#L1799) | | GET | `/v5/spot-margin-trade/data` |
| `getHistoricalInterestRate()` | :closed_lock_with_key: | GET | `/v5/spot-margin-trade/interest-rate-history` | | [getHistoricalInterestRate()](https://github.com/tiagosiebler/bybit-api/blob/master/src/rest-client-v5.ts#L1810) | :closed_lock_with_key: | GET | `/v5/spot-margin-trade/interest-rate-history` |
| `toggleSpotMarginTrade()` | :closed_lock_with_key: | POST | `/v5/spot-margin-trade/switch-mode` | | [toggleSpotMarginTrade()](https://github.com/tiagosiebler/bybit-api/blob/master/src/rest-client-v5.ts#L1837) | :closed_lock_with_key: | POST | `/v5/spot-margin-trade/switch-mode` |
| `setSpotMarginLeverage()` | :closed_lock_with_key: | POST | `/v5/spot-margin-trade/set-leverage` | | [setSpotMarginLeverage()](https://github.com/tiagosiebler/bybit-api/blob/master/src/rest-client-v5.ts#L1849) | :closed_lock_with_key: | POST | `/v5/spot-margin-trade/set-leverage` |
| `getSpotMarginState()` | :closed_lock_with_key: | GET | `/v5/spot-margin-trade/state` | | [getSpotMarginState()](https://github.com/tiagosiebler/bybit-api/blob/master/src/rest-client-v5.ts#L1858) | :closed_lock_with_key: | GET | `/v5/spot-margin-trade/state` |
| `getSpotMarginCoinInfo()` | :closed_lock_with_key: | GET | `/v5/spot-cross-margin-trade/pledge-token` | | [getSpotMarginCoinInfo()](https://github.com/tiagosiebler/bybit-api/blob/master/src/rest-client-v5.ts#L1871) | :closed_lock_with_key: | GET | `/v5/spot-cross-margin-trade/pledge-token` |
| `getSpotMarginBorrowableCoinInfo()` | :closed_lock_with_key: | GET | `/v5/spot-cross-margin-trade/borrow-token` | | [getSpotMarginBorrowableCoinInfo()](https://github.com/tiagosiebler/bybit-api/blob/master/src/rest-client-v5.ts#L1888) | :closed_lock_with_key: | GET | `/v5/spot-cross-margin-trade/borrow-token` |
| `getSpotMarginInterestAndQuota()` | :closed_lock_with_key: | GET | `/v5/spot-cross-margin-trade/loan-info` | | [getSpotMarginInterestAndQuota()](https://github.com/tiagosiebler/bybit-api/blob/master/src/rest-client-v5.ts#L1905) | :closed_lock_with_key: | GET | `/v5/spot-cross-margin-trade/loan-info` |
| `getSpotMarginLoanAccountInfo()` | :closed_lock_with_key: | GET | `/v5/spot-cross-margin-trade/account` | | [getSpotMarginLoanAccountInfo()](https://github.com/tiagosiebler/bybit-api/blob/master/src/rest-client-v5.ts#L1923) | :closed_lock_with_key: | GET | `/v5/spot-cross-margin-trade/account` |
| `spotMarginBorrow()` | :closed_lock_with_key: | POST | `/v5/spot-cross-margin-trade/loan` | | [spotMarginBorrow()](https://github.com/tiagosiebler/bybit-api/blob/master/src/rest-client-v5.ts#L1947) | :closed_lock_with_key: | POST | `/v5/spot-cross-margin-trade/loan` |
| `spotMarginRepay()` | :closed_lock_with_key: | POST | `/v5/spot-cross-margin-trade/repay` | | [spotMarginRepay()](https://github.com/tiagosiebler/bybit-api/blob/master/src/rest-client-v5.ts#L1958) | :closed_lock_with_key: | POST | `/v5/spot-cross-margin-trade/repay` |
| `getSpotMarginBorrowOrderDetail()` | :closed_lock_with_key: | GET | `/v5/spot-cross-margin-trade/orders` | | [getSpotMarginBorrowOrderDetail()](https://github.com/tiagosiebler/bybit-api/blob/master/src/rest-client-v5.ts#L1973) | :closed_lock_with_key: | GET | `/v5/spot-cross-margin-trade/orders` |
| `getSpotMarginRepaymentOrderDetail()` | :closed_lock_with_key: | GET | `/v5/spot-cross-margin-trade/repay-history` | | [getSpotMarginRepaymentOrderDetail()](https://github.com/tiagosiebler/bybit-api/blob/master/src/rest-client-v5.ts#L2002) | :closed_lock_with_key: | GET | `/v5/spot-cross-margin-trade/repay-history` |
| `toggleSpotCrossMarginTrade()` | :closed_lock_with_key: | POST | `/v5/spot-cross-margin-trade/switch` | | [toggleSpotCrossMarginTrade()](https://github.com/tiagosiebler/bybit-api/blob/master/src/rest-client-v5.ts#L2031) | :closed_lock_with_key: | POST | `/v5/spot-cross-margin-trade/switch` |
| `getCollateralCoins()` | | GET | `/v5/crypto-loan/collateral-data` | | [getCollateralCoins()](https://github.com/tiagosiebler/bybit-api/blob/master/src/rest-client-v5.ts#L2048) | | GET | `/v5/crypto-loan/collateral-data` |
| `getBorrowableCoins()` | | GET | `/v5/crypto-loan/loanable-data` | | [getBorrowableCoins()](https://github.com/tiagosiebler/bybit-api/blob/master/src/rest-client-v5.ts#L2064) | | GET | `/v5/crypto-loan/loanable-data` |
| `getAccountBorrowCollateralLimit()` | :closed_lock_with_key: | GET | `/v5/crypto-loan/borrowable-collateralisable-number` | | [getAccountBorrowCollateralLimit()](https://github.com/tiagosiebler/bybit-api/blob/master/src/rest-client-v5.ts#L2081) | :closed_lock_with_key: | GET | `/v5/crypto-loan/borrowable-collateralisable-number` |
| `borrowCryptoLoan()` | :closed_lock_with_key: | POST | `/v5/crypto-loan/borrow` | | [borrowCryptoLoan()](https://github.com/tiagosiebler/bybit-api/blob/master/src/rest-client-v5.ts#L2100) | :closed_lock_with_key: | POST | `/v5/crypto-loan/borrow` |
| `repayCryptoLoan()` | :closed_lock_with_key: | POST | `/v5/crypto-loan/repay` | | [repayCryptoLoan()](https://github.com/tiagosiebler/bybit-api/blob/master/src/rest-client-v5.ts#L2119) | :closed_lock_with_key: | POST | `/v5/crypto-loan/repay` |
| `getUnpaidLoanOrders()` | :closed_lock_with_key: | GET | `/v5/crypto-loan/ongoing-orders` | | [getUnpaidLoanOrders()](https://github.com/tiagosiebler/bybit-api/blob/master/src/rest-client-v5.ts#L2133) | :closed_lock_with_key: | GET | `/v5/crypto-loan/ongoing-orders` |
| `getRepaymentHistory()` | :closed_lock_with_key: | GET | `/v5/crypto-loan/repayment-history` | | [getRepaymentHistory()](https://github.com/tiagosiebler/bybit-api/blob/master/src/rest-client-v5.ts#L2152) | :closed_lock_with_key: | GET | `/v5/crypto-loan/repayment-history` |
| `getCompletedLoanOrderHistory()` | :closed_lock_with_key: | GET | `/v5/crypto-loan/borrow-history` | | [getCompletedLoanOrderHistory()](https://github.com/tiagosiebler/bybit-api/blob/master/src/rest-client-v5.ts#L2170) | :closed_lock_with_key: | GET | `/v5/crypto-loan/borrow-history` |
| `getMaxAllowedReductionCollateralAmount()` | :closed_lock_with_key: | GET | `/v5/crypto-loan/max-collateral-amount` | | [getMaxAllowedReductionCollateralAmount()](https://github.com/tiagosiebler/bybit-api/blob/master/src/rest-client-v5.ts#L2187) | :closed_lock_with_key: | GET | `/v5/crypto-loan/max-collateral-amount` |
| `adjustCollateralAmount()` | :closed_lock_with_key: | POST | `/v5/crypto-loan/adjust-ltv` | | [adjustCollateralAmount()](https://github.com/tiagosiebler/bybit-api/blob/master/src/rest-client-v5.ts#L2204) | :closed_lock_with_key: | POST | `/v5/crypto-loan/adjust-ltv` |
| `getLoanLTVAdjustmentHistory()` | :closed_lock_with_key: | GET | `/v5/crypto-loan/adjustment-history` | | [getLoanLTVAdjustmentHistory()](https://github.com/tiagosiebler/bybit-api/blob/master/src/rest-client-v5.ts#L2226) | :closed_lock_with_key: | GET | `/v5/crypto-loan/adjustment-history` |
| `getInstitutionalLendingProductInfo()` | | GET | `/v5/ins-loan/product-infos` | | [getInstitutionalLendingProductInfo()](https://github.com/tiagosiebler/bybit-api/blob/master/src/rest-client-v5.ts#L2246) | | GET | `/v5/ins-loan/product-infos` |
| `getInstitutionalLendingMarginCoinInfo()` | | GET | `/v5/ins-loan/ensure-tokens` | | [getInstitutionalLendingMarginCoinInfo()](https://github.com/tiagosiebler/bybit-api/blob/master/src/rest-client-v5.ts#L2256) | | GET | `/v5/ins-loan/ensure-tokens` |
| `getInstitutionalLendingMarginCoinInfoWithConversionRate()` | | GET | `/v5/ins-loan/ensure-tokens-convert` | | [getInstitutionalLendingMarginCoinInfoWithConversionRate()](https://github.com/tiagosiebler/bybit-api/blob/master/src/rest-client-v5.ts#L2265) | | GET | `/v5/ins-loan/ensure-tokens-convert` |
| `getInstitutionalLendingLoanOrders()` | :closed_lock_with_key: | GET | `/v5/ins-loan/loan-order` | | [getInstitutionalLendingLoanOrders()](https://github.com/tiagosiebler/bybit-api/blob/master/src/rest-client-v5.ts#L2274) | :closed_lock_with_key: | GET | `/v5/ins-loan/loan-order` |
| `getInstitutionalLendingRepayOrders()` | :closed_lock_with_key: | GET | `/v5/ins-loan/repaid-history` | | [getInstitutionalLendingRepayOrders()](https://github.com/tiagosiebler/bybit-api/blob/master/src/rest-client-v5.ts#L2286) | :closed_lock_with_key: | GET | `/v5/ins-loan/repaid-history` |
| `getInstitutionalLendingLTV()` | :closed_lock_with_key: | GET | `/v5/ins-loan/ltv` | | [getInstitutionalLendingLTV()](https://github.com/tiagosiebler/bybit-api/blob/master/src/rest-client-v5.ts#L2298) | :closed_lock_with_key: | GET | `/v5/ins-loan/ltv` |
| `getInstitutionalLendingLTVWithLadderConversionRate()` | :closed_lock_with_key: | GET | `/v5/ins-loan/ltv-convert` | | [getInstitutionalLendingLTVWithLadderConversionRate()](https://github.com/tiagosiebler/bybit-api/blob/master/src/rest-client-v5.ts#L2307) | :closed_lock_with_key: | GET | `/v5/ins-loan/ltv-convert` |
| `bindOrUnbindUID()` | :closed_lock_with_key: | POST | `/v5/ins-loan/association-uid` | | [bindOrUnbindUID()](https://github.com/tiagosiebler/bybit-api/blob/master/src/rest-client-v5.ts#L2322) | :closed_lock_with_key: | POST | `/v5/ins-loan/association-uid` |
| `getExchangeBrokerEarnings()` | :closed_lock_with_key: | GET | `/v5/broker/earnings-info` | | [getExchangeBrokerEarnings()](https://github.com/tiagosiebler/bybit-api/blob/master/src/rest-client-v5.ts#L2346) | :closed_lock_with_key: | GET | `/v5/broker/earnings-info` |
| `getExchangeBrokerAccountInfo()` | :closed_lock_with_key: | GET | `/v5/broker/account-info` | | [getExchangeBrokerAccountInfo()](https://github.com/tiagosiebler/bybit-api/blob/master/src/rest-client-v5.ts#L2359) | :closed_lock_with_key: | GET | `/v5/broker/account-info` |
| `getBrokerSubAccountDeposits()` | :closed_lock_with_key: | GET | `/v5/broker/asset/query-sub-member-deposit-record` | | [getBrokerSubAccountDeposits()](https://github.com/tiagosiebler/bybit-api/blob/master/src/rest-client-v5.ts#L2375) | :closed_lock_with_key: | GET | `/v5/broker/asset/query-sub-member-deposit-record` |
| `getBrokerVoucherSpec()` | :closed_lock_with_key: | POST | `/v5/broker/award/info` | | [getBrokerVoucherSpec()](https://github.com/tiagosiebler/bybit-api/blob/master/src/rest-client-v5.ts#L2390) | :closed_lock_with_key: | POST | `/v5/broker/award/info` |
| `issueBrokerVoucher()` | :closed_lock_with_key: | POST | `/v5/broker/award/distribute-award` | | [issueBrokerVoucher()](https://github.com/tiagosiebler/bybit-api/blob/master/src/rest-client-v5.ts#L2402) | :closed_lock_with_key: | POST | `/v5/broker/award/distribute-award` |
| `getBrokerIssuedVoucher()` | :closed_lock_with_key: | POST | `/v5/broker/award/distribution-record` | | [getBrokerIssuedVoucher()](https://github.com/tiagosiebler/bybit-api/blob/master/src/rest-client-v5.ts#L2414) | :closed_lock_with_key: | POST | `/v5/broker/award/distribution-record` |