Get Status of Recent Deposits
POST/private/DepositStatus
Retrieve information about recent deposits. Results are sorted by recency, use the cursor
parameter to iterate through list of deposits (page size equal to value of limit
) from newest to oldest.
API Key Permissions Required: Funds permissions - Query
Request
- application/json
Body
required
- MOD1
- MOD2
Nonce used in construction of API-Sign
header
Filter for specific asset being deposited
Default value: currency
Filter for specific asset class being deposited
Filter for specific name of deposit method
Start timestamp, deposits created strictly before will not be included in the response
End timestamp, deposits created strictly after will be not be included in the response
cursor object
true/false to enable/disable paginated response (boolean) or cursor for next page of results (string)
boolean
string
Default value: 25
Number of results to include per page
Responses
- 200
Recent deposits retrieved.
- application/json
- Schema
- Example (from schema)
Schema
- deposit
- MOD2
return
A return transaction initiated by Krakenonhold
Deposit is on hold pending reviewreturn
A return transaction initiated by Krakenonhold
Deposit is on hold pending review
result object
Name of deposit method
Asset class
Asset
Reference ID
Method transaction ID
Method transaction information
Amount deposited
Fees paid
Unix timestamp when request was made
Status of deposit
For information about the status, please refer to the IFEX financial transaction states.
Possible values: [return
, onhold
]
Addition status properties (if available)
Client sending transaction id(s) for deposits that credit with a sweeping transaction
deposit object
deposit
Name of deposit method
Asset class
Asset
Reference ID
Method transaction ID
Method transaction information
Amount deposited
Fees paid
Unix timestamp when request was made
Status of deposit
For information about the status, please refer to the IFEX financial transaction states.
Possible values: [return
, onhold
]
Addition status properties (if available)
Client sending transaction id(s) for deposits that credit with a sweeping transaction
If pagination is set via cursor
parameter, provides next input to use for cursor
in pagination
{
"error": [],
"result": [
{
"method": "Bitcoin",
"aclass": "currency",
"asset": "XXBT",
"refid": "FTQcuak-V6Za8qrWnhzTx67yYHz8Tg",
"txid": "6544b41b607d8b2512baf801755a3a87b6890eacdb451be8a94059fb11f0a8d9",
"info": "2Myd4eaAW96ojk38A2uDK4FbioCayvkEgVq",
"amount": "0.78125000",
"fee": "0.0000000000",
"time": 1688992722,
"status": "Success",
"status-prop": "return"
},
{
"method": "Ether (Hex)",
"aclass": "currency",
"asset": "XETH",
"refid": "FTQcuak-V6Za8qrPnhsTx47yYLz8Tg",
"txid": "0x339c505eba389bf2c6bebb982cc30c6d82d0bd6a37521fa292890b6b180affc0",
"info": "0xca210f4121dc891c9154026c3ae3d1832a005048",
"amount": "0.1383862742",
"time": 1688992722,
"status": "Settled",
"status-prop": "onhold",
"originators": [
"0x70b6343b104785574db2c1474b3acb3937ab5de7346a5b857a78ee26954e0e2d",
"0x5b32f6f792904a446226b17f607850d0f2f7533cdc35845bfe432b5b99f55b66"
]
}
]
}