getBidOrderIds
Get bid order IDs given an asset ID, in order of decreasing bid price or increasing ask price.
Request:
requestType is getBidOrderIds
asset is the asset ID
firstIndex is a zero-based index to the first order ID to retrieve (optional)
lastIndex is a zero-based index to the last order ID to retrieve (optional)
Response:
(A) bidOrderIds or askOrderIds is the array of order IDs
(N) requestProcessingTime is the API request processing time (in millisec)
Example:
Request:
http://localhost:801/BEAM?requestType=getAskOrderIds&asset=11700625361170592721&lastIndex=5
Response:
{ “requestProcessingTime”: 3, “bidOrderIds”: [ “9230225288402446558”, “9243318318548315528”, “9399454941412352140”, “9436352279829246389”, “9443733332658954573”, “9545675672764030312” ] }
Last updated