Get information on accounts involved in off-exchange loans

This endpoint is only for querying accounts that are currently involved in off-exchange funding and loans.

HTTP Request

GET /api/v1/otc-loan/accounts

Request Example

GET /api/v1/otc-loan/accounts

API Permissions

This API requires transaction permissions

Return Parameters
Segment Definition
uid Account UID
marginCcy Margin Currency
marginQty Maintenance Quantity (Calculated with Margin Coefficient)
marginFactor Margin Coefficient
accountType Account Type: TRADE - Trading Account TRADE_HF - High-Frequency Trading Account CONTRACT - Futures Account (for Total Futures Equity)
isParent If It Is Master Account
Return Example
{
    "code": "200000",
    "data": [
        {
            "uid": "1000001",
            "marginCcy": "USDT",
            "marginQty": "11",
            "marginFactor": "1",
            "accountType": "TRADE",
            "isParent": false
        },
        {
            "uid": "1000000",
            "marginCcy": "USDT",
            "marginQty": "108.09181573",
            "marginFactor": "1",
            "accountType": "TRADE",
            "isParent": true
        }
    ]
}