Skip to content

Funds

Type Apis Details
GET api/funds-rest/funds/limits Get available funds

Get Limits

Get all information of your trading account like balance, margin utilised, collateral, etc.

Response Structure

{
    "status": "Ok",
    "message": "Success",
    "result": [
        {
            "availableMargin": 0.0,
            "openingBalance": 0.0,
            "marginUsed": 0.0,
            "payin": 0.0,
            "stockPledge": 0.0,
            "holdingSellCredit": 0.0,
            "exposure": 0.0,
            "premium": 0.0,
            "bookedPAndL": 0.0,
            "mtmPAndL": 0.0,
            "collateralValue": 0.0,
            "fundsTranstoday": 0.0,
            "creditForSale": 0.0,
            "totalUtilize": 0.0,
            "allocationOrWithdrawal": 0.0,
            "netAvailableFunds": 0.0,
            "adhocMargin": 0.0
        }
    ]
}

Parameters

Field Type Description
status String Status of the API response, indicating the success or failure of the request.
message String Message providing additional information about the response status.
availableMargin Float Funds available for trading after accounting for used margins and other allocations.
openingBalance Float Account balance at the start of the trading day.
marginUsed Float Portion of the margin currently used for open positions or trades.
payin Float Amount deposited into the account by the user.
stockPledge Float Value of stocks pledged as collateral.
holdingSellCredit Float Credit received from the sale of holdings, pending settlement.
exposure Float Total exposure amount allocated to open positions.
premium Float Amount spent on premiums, particularly in options trading.
bookedPAndL Float Realized profit or loss from closed trades.
mtmPAndL Float Mark-to-market profit or loss, reflecting unrealized gains or losses on open positions.
collateralValue Float Total value of securities provided as collateral.
fundsTranstoday Float Net funds transferred into or out of the account today.
creditForSale Float Credit generated from securities sales available for further transactions.
totalUtilize Float Total funds utilized across all transactions, including trades and positions.
allocationOrWithdrawal Float Funds either allocated to or withdrawn from the margin account.
netAvailableFunds Float Total funds available for additional trades or withdrawals.
adhocMargin Float Additional margin provided to meet trading requirements.