Skip to content

User

Use the below apis to see and manage positions:

method endpoint use case Rate Limit
GET /user/funds Fetch Available funds 10/sec

Available Funds

This api returns details of funds utilizations and deposits across NSE and MCX. All NSE exchanges [NSE_FO, NSE_EQ, NSE_CUR] have common funds. MCX_FO has separate funds.

Sample Response

{
    "nse": {
        "deposit": 22449.64,
        "funds_transferred": 0,
        "collateral": 8839.36,
        "credit_for_sale": 0,
        "option_credit_for_sale": 0,
        "limit_utilization": -66.92,
        "funds_withdrawn": 0,
        "mtm_and_booked_loss": 0,
        "booked_profit": 0,
        "total_trading_power": 31289,
        "total_utilization": -66.92,
        "net_available": 31222.08
    },
    "mcx": {
        "deposit": 11995.21,
        "funds_transferred": 0,
        "collateral": 0,
        "credit_for_sale": 0,
        "option_credit_for_sale": 0,
        "limit_utilization": 0,
        "funds_withdrawn": 0,
        "mtm_and_booked_loss": 0,
        "booked_profit": 0,
        "total_trading_power": 11995.21,
        "total_utilization": 0,
        "net_available": 11995.21
    }
}
field description
deposit Cash deposit as of starting of the day
funds_transferred Cash deposited during the day
collateral Value of stocks kept as collateral
credit_for_sale Credit for sale received after selling stocks
option_credit_for_sale Credit for sale received after selling options
limit_utilization Credit for sale received after selling options
funds_withdrawn Value of pending funds withdrawal requests
mtm_and_booked_loss Booked MTM loss
total_trading_power Total trading power considering all deposits and credits
total_utilization Total utilization considering losses and withdrawals
net_available Net funds available for trading