Deposits

Get your deposits history.

Get your deposits history.

GET//www.mameex.com/api/v2/live/account/deposits
Query parameters
Response

Get your deposits history.

Body
idinteger (int32)

Unique deposit id.

currencystring

Deposit currency id.

amountnumber (double)

Deposit amount.

feenumber (double)

Deposit fee.

txidstring

Deposit transaction id.

confirmationsinteger (int32)

Number of deposit confirmations.

statestring

Deposit state.

transfer_typestring

Deposit transfer type

created_atstring

The datetime when deposit was created.

completed_atstring

The datetime when deposit was completed..

tidstring

The shared transaction ID

Request
const response = await fetch('//www.mameex.com/api/v2/live/account/deposits', {
    method: 'GET',
    headers: {},
});
const data = await response.json();
Response
[
  {
    "id": 0,
    "currency": "text",
    "amount": 0,
    "fee": 0,
    "txid": "text",
    "confirmations": 0,
    "state": "text",
    "transfer_type": "text",
    "created_at": "text",
    "completed_at": "text",
    "tid": "text"
  }
]

Last updated