getAllAssets

Get all assets in the exchange in reverse block height of creation order.

Request: requestType is getAllAssets firstIndex is a zero-based index to the first asset to retrieve (optional) lastIndex is a zero-based index to the last asset to retrieve (optional)

Response:

(A) assets is the array of asset objects (refer to Get Asset) (N) requestProcessingTime is the API request processing time (in millisec)

Example:

Request:

http://localhost:801/BEAM?requestType=getAllAssets&firstIndex=373

Response:

{ “assets”: [ { “quantityQNT”: “10000000000”, “numberOfAccounts”: 77, “accountRS”: “BEAM-7X92-29W5-7LQA-4V8CH”, “decimals”: 8, “numberOfTransfers”: 26, “name”: “BCPT”, “description”: “This is content of description”, “numberOfTrades”: 510, “asset”: “12791182347560578640”, “account”: “16050713509424738513” }, { “quantityQNT”: “100000000”, “numberOfAccounts”: 26, “accountRS”: “BEAM-7X92-29W5-RJBS-FCVGV”, “decimals”: 2, “numberOfTransfers”: 36, “name”: “NOIZFund”, “description”: “This is content of description 2”, “numberOfTrades”: 2, “asset”: “673530795527425458”, “account”: “15977480701804512252” } ], “requestProcessingTime”: 3 }

Last updated