List Deposits
GET/v1/wallet/deposits
List your deposits.
Requires authentication.
Request
Query Parameters
Asset ID.
Asset network.
Your asset address.
A complementary information used in some networks.
A complementary information used in some networks.
Possible values: [PENDING
, COMPLETED
, CANCELED
, CANCELED_SYSTEM
]
Status of the progress of deposit processing.
Timestamp of when this object was created.
Timestamp of when this object status was updated.
Possible values: [INTERNAL_ERROR
, NOT_ENOUGH_FUNDS
, INVALID_DESTINATION_ADDRESS
]
Reason why a deposit could not be completed.
A reference to the server indicating the next set of objects to be returned. It is sent back in every response were the number of objects returned is bigger than the limit.
Possible values: non-empty
and <= 200 characters
, >= 1
and <= 200
Default value: 20
Max number of objects to be returned as result of request.
Responses
- 200
OK
- application/json
- Schema
- Example (from schema)
- Deposit list
Schema
- Array [
- ]
result object[]
Unique identification of deposit.
Asset ID.
Network ID.
Value amount of asset.
Your asset address.
A complementary information used in some networks.
A complementary information used in some networks.
Unique Identifier for a particular transaction at blockchain.
Index position of Unspent Transaction Output in the block used by this transaction.
Possible values: [PENDING
, COMPLETED
, CANCELED
, CANCELED_SYSTEM
]
Status of the progress of deposit processing.
Timestamp of the time when the this object status was updated.
Timestamp of when this object was created.
Possible values: [INTERNAL_ERROR
, NOT_ENOUGH_FUNDS
, INVALID_DESTINATION_ADDRESS
]
Reason why a deposit could not be completed.
{
"result": [
{
"id": "425676437626841396",
"asset": "BTC",
"network": "BTC",
"amount": "0.000447730000000000",
"address": "0x83a127952d266A6eA306c40Ac62A4a70668FE3BE",
"destination_tag": "string",
"memo": "A78910",
"transaction_hash": "101ff27232ed56fd485da4ed7dc95f3f8ba6eb1d24047a521049a0293ad8ff8a",
"utxo_index": 2,
"status": "COMPLETED",
"status_updated_at": 1675811518123456,
"created_at": 1675810392753862,
"negative_status_reason": "INVALID_DESTINATION_ADDRESS"
}
]
}
{
"result": [
{
"id": "425676437626841396",
"asset": "BTC",
"network": "BTC",
"amount": "0.000447730000000000",
"address": "0x83a127952d266A6eA306c40Ac62A4a70668FE3BE",
"destination_tag": "",
"memo": "A78910",
"transaction_hash": "101ff27232ed56fd485da4ed7dc95f3f8ba6eb1d24047a521049a0293ad8ff8a",
"utxo_index": 0,
"status": "COMPLETED",
"status_updated_at": 1675811518123456,
"created_at": 1675811518001234,
"negative_status_reason": null
}
]
}