Trades
GET /trades
Sample Response
This returns an array of all trades received by NDAXs where the requestor is the Platform, either party associated with the trade, or the account group where the trade was settled.
Optional query parameters include:
market_identifier_code
filters trades to ones on a specific market (SCXM for Seed Digital Commodities Market for example)omit_market_identifier_code
filters out trades from one specific marketplatform_code
filters trades to ones on a specific Platform on which the trade was executedomit_platform_code
filters out trades from one specific Platformtrade_state
filters trades to ones in a specific trade_statesettlement_state
filters trades to ones in a specific settlement_stateparty_code
filters trades to ones that include a party_code in any of the partiestransaction_timestamp
filters trades based on a given timestamp in milliseconds1593798130060
or nanoseconds1593798130060000000
using the following next params for the following filter types:[gt]
greater than a given timestamp, e.g.transaction_timestamp[gt]=1593798130060
[gte]
greater than or equal to a given timestamp, e.g.transaction_timestamp[gte]=1593798130060
[e]
equal to a given timestamp, e.g.transaction_timestamp[e]=1593798130060
[lt]
less than a given timestamp, e.g.transaction_timestamp[lt]=1593798130060
[lte]
lower than or equal to a given timestamp, e.g.transaction_timestamp[lte]=1593798130060
combinations are also possible, e.g. to find a trades between
1593798130555
and1593798130777
you can use the next combinationtransaction_timestamp[gt]=1593798130555&transaction_timestamp[lt]=1593798130777
page
for paginating through the tradesclient_trade_id
filters trades based on the client_trade_idreporting_party
filters trades based on the reporting_partysettlement_schedule
filters trades based on the settlement_schedule
GET /trades/:trade_id
GET /trades/:trade_id
A trade is a request to exchange assets on the NDAX exchange. When a trade is submitted, NDAX assigns it a unique identifier called the 'trade_id'. This identifier is returned in the response from the trade submission endpoints, which are specific routes on the server used to initiate trades. The 'trade_id' can be used to track the progress of the trade and retrieve information about it.
Sample Response
Last updated