Skip to main content

strategy

Bear Put Spread

The Bear Put Spread places two orders which both the legs will be put and in which the first one is bought and second one is sold, the strike price can be defined by the users

Method : POST

https://connect-go.thefirstock.tech/api/V5/bearPutSpread

Request details

API Parameters
Key Value Type Mandatory
userId
String
NP2997 String Yes
jKey
String
abc123 String Yes
putBuyStrikePrice
String
22500 String Yes
putSellStrikePrice
String
22500 String Yes
expiry
String
27Feb25 String Yes
symbol
String
NIFTY String Yes
product
String
C String Yes
quantity
String
1 String Yes
exchange
String
NFO String Yes
priceType
String
MKT String Yes
retention
String
DAY String Yes
remarks
String
BearPutSpread String No

Libraries and SDKs

Tabbed Interface
curl --location 'https://connect-go.thefirstock.tech/api/V5/bearPutSpread' \
--header 'Content-Type: application/json' \
--data '{
    "userId": "NP2007", 
    "jKey": "1478b9b71707210d88510f38dad493d35",
    "putBuyStrikePrice": "22500",
    "putSellStrikePrice": "22500",
    "expiry": "27FEB25",
    "symbol": "NIFTY",
    "product": "C",
    "quantity": "1",
    "exchange": "NFO",
    "priceType": "MKT",
    "retention": "DAY",
    "remarks": "BearPutSpread"
}'

Success response details

API Parameters
Parameter Description Example
status
String
Indicates the outcome of the API request success
data.requestTime
String
Timestamp indicating when the response
was received
14:10:13 15-02-2023
data.orderNumber
String
Unique identifier for the order,
provided upon successful placement
1234567890111
[
  {
    status: "success",
    data: {
      [
  {
    "actid": "NP2997",
    "amo": "Yes",
    "exch": "NFO",
    "kidid": "1",
    "ls": "1",
    "mult": "1",
    "norenordno": "25031200006634",
    "ntm": "590014650",
    "pcode": "C",
    "pp": "2",
    "prc": "0.00",
    "prcftr": "1.000000",
    "prctyp": "MKT",
    "qty": "1",
    "rejreason": "ORA:Product Delivery not enabled on exchange NFO",
    "remarks": "BearPutSpread",
    "reporttype": "Rejected",
    "ret": "DAY",
    "status": "REJECTED",
    "ti": "0.05",
    "tm": "1741760765",
    "token": "NA",
    "trantype": "B",
    "tsym": "NIFTY27FEB25P22500",
    "uid": "NP2997"
  },
  {
    "gui_order_id": "(null)",
    "handlinst": "(null)",
    "norenordno": 25031200006635,
    "req_status": "OK"
  }
]

    },
  },
];

Failure response details

API Error Parameters
Parameter Description Example
status
String
Indicates the result status of
the API operation
failed
code
String
HTTP status code associated with
the error
401
name
String
Specifies the type or category
of the error encountered
INVALID_JKEY
error.field
String
Field in the request that
triggered the error
jKey
error.message
String
Detailed message describing the
error
jKey parameter is
invalid
[
  {
    status: "failed",
    code: "401",
    name: "INVALID_JKEY",
    error: {
      field: "jKey",
      message: "jKey parameter is invalid",
    },
  }
];