Payload sample for equity and commodity future super order

Hi Team,

I’m integrating order placement via API and would appreciate your help with a sample request payload for placing a Super Order / Bracket Order.

Could you please share a sample payload for the following cases:

  1. RELIANCE Futures – 1 lot (current month)

  2. Natural Gas JAN Futures (MCX) – 1 lot

The sample payload should ideally include:

  • Entry order

  • Stop Loss

  • Target

  • Trailing SL (if applicable)

  • Required flags/fields specific to Super Orders

This will help ensure correct implementation and avoid trial-and-error in live markets.

Thanks in advance for your support :folded_hands:
Looking forward to your guidance.

— Suraj

Hello @Suraj_Prakash ,

To know the complete request structure and payload details for placing Super Orders, you can refer to our official documentation below:

Here you’ll find the endpoint, request structure, field descriptions, and required parameters for placing Super Orders, including entry, stop loss, target, and trailing SL fields.

For your quick reference, we’ve shared below sample payload structures for:

Reliance Futures :
{
“dhanClientId”: “XXXXXXXX”,
“transactionType”: “BUY”,
“exchangeSegment”: “NSE_FNO”,
“productType”: “MARGIN”,
“orderType”: “MARKET”,
“securityId”: “49993”,
“quantity”: 500,
“price”: 0,
“targetPrice”: 1550,
“stopLossPrice”: 1400,
“trailingJump”: 1
}

NaturalGas Futures:

{
“dhanClientId”: “XXXXXXXX”,
“transactionType”: “BUY”,
“exchangeSegment”: “MCX_COMM”,
“productType”: “MARGIN”,
“orderType”: “MARKET”,
“securityId”: “465849”,
“quantity”: 1,
“price”: 0,
“targetPrice”: 400,
“stopLossPrice”: 250,
“trailingJump”: 1
}

You can modify the securityId, quantity, prices, and trigger values as per your strategy before using them in live implementation.

1 Like