getOrderBook

Request Parameters

ParameterRequiredTypeDescription
clientIDyesstringTransactAPI Client ID
developerAPIKeyyesstringTransactAPI Developer Key
securityIDyesstringSecurity ID for the PPEX/ATS
issuerIDyesintegerIssuer ID

Sample Request

curl -k -X POST https://api-sandboxdash.norcapsecurities.com/tapiv3/index.php/v3/getOrderBook
-d clientID=someClient Id 
-d developerAPIKey=somedeveloperAPIKey  
-d securityID= securityID
-d issuerID= issuerID

Response Parameters

ParameterTypeDescription
statusCodestringAPI Status Code
statusDescstringAPI Status Description
orderDetailsAllstringGet security order details array

Sample Response

{
	"statusCode": "101",
	"statusDesc": "Ok",
	 "orderDetailsAll":"[{
                 "security_name":"Instacart",
                 "Action":"Buy",
                 "number_shares":18",
                 "share_per_price":"RFQ",
                 "total_amount":"RFQ",
                },
                {"security_name":"Instacart",
                 "Action":"Buy",
                 "number_shares":33",
                 "share_per_price":"RFQ",
                 "total_amount":"RFQ",
                },
                {"security_name":"Instacart",
                 "Action":"Sell",
                 "number_shares":15",
                 "share_per_price":"15.0",
                 "total_amount":"225.00",
                 }]"
}

Test it Yourself!

Language
Click Try It! to start a request and see the response here!