GET
Deposits
GET /deposits
GET /deposits
Sample Response
Returns an array of deposits associated with the participant requesting. If you'd like to view your customer deposits in addition to yours, use the include_customer_deposits query parameter.
Query parameters include:
page
(optional) for paginating through your list of addressesasset
(optional) will filter to a specific assetinclude_customer_deposits
(optional) if true, will return customer deposits in addition to platform depositssettle_timestamp
filters deposits 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.settle_timestamp[gt]=1593798130060
[gte]
greater than or equal to a given timestamp, e.g.settle_timestamp[gte]=1593798130060
[e]
equal to a given timestamp, e.g.settle_timestamp[e]=1593798130060
[lt]
less than a given timestamp, e.g.settle_timestamp[lt]=1593798130060
[lte]
lower than or equal to a given timestamp, e.g.settle_timestamp[lte]=1593798130060
combinations are also possible, e.g. to find a trades between
1593798130555
and1593798130777
you can use the next combinationsettle_timestamp[gt]=1593798130555&settle_timestamp[lt]=1593798130777
Response:
Last updated