Maxbit API documentation
  1. Maxbit
Maxbit API documentation
  • Maxbit
    • Maxbit Orderbook websocket
    • Get User Balance
      GET
    • Get Deposit Address
      GET
    • Symbol Price Ticker
      GET
    • Get All Asset And Network
      GET
    • New Order
      POST
    • Query Order
      GET
    • Cancel Order
      PUT
    • Cancel all Open Orders on a Symbol
      PUT
    • All Orders
      GET
    • System Status
      GET
    • Account API Trading Status
      GET
    • Get Crypto Deposit History
      GET
    • Get Crypto Withdraw History
      GET
    • Get Fiat Transactions
      GET
    • Get User Banks
      GET
    • Fiat Withdrawal (Advanced)
      POST
    • Get Trading pair
      GET
    • Get Pair Settings
      GET
    • Trading Fee
      GET
  1. Maxbit

Get Crypto Deposit History

GET
/sapi/v1/capital/deposit/hisrec
DESCRIPTION
Retrieves the deposit history for a user's account, providing detailed information about past deposit transactions, including timestamps, asset types, amounts, and transaction statuses.

Request

Query Params
includeSource
string 
optional
[Redundant]
Example:
true
coin
string 
optional
Input asset symbol
E.g. BTC, ETH,...
If left blank, it will return all asset addresses.
Example:
BTC
status
string 
optional
(0:pending,6: credited but cannot withdraw, 7=Wrong Deposit,8=Waiting User confirm, 1:success)
Example:
0
startTime
string 
optional
Default: 90 days from current timestamp
Example:
1718855898528
endTime
string 
optional
Default: present timestamp
Example:
1718855898528
offset
string 
optional
[Redundant]
limit
string 
optional
Default:1000, Max:1000
txId
string 
optional
The transaction hash
timestamp
string 
required
UTC timestamp in ms
Example:
1718855898528
signature
string 
required
Example:
{{signature}}
Header Params
Content-Type
string 
required
Example:
application/json
X-MBX-APIKEY
string 
required
Example:
{{maxbit-api-key}}

Request samples

Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location -g --request GET 'https://endpoint-gateway.maxbit.com/sapi/v1/capital/deposit/hisrec?includeSource=true&coin=BTC&status=0&startTime=1718855898528&endTime=1718855898528&offset=&limit=&txId=&timestamp=1718855898528&signature={{signature}}' \
--header 'X-MBX-APIKEY: {{maxbit-api-key}}' \
--header 'Content-Type: application/json'

Responses

🟢200Success
application/json
Body
object {0}
Example
[
    {
        "amount": "0.00999800",
        "coin": "PAXG",
        "network": "ETH",
        "status": 1,
        "address": "0x788cabe9236ce061e5a892e1a59395a81fc8d62c",
        "addressTag": "",
        "txId": "0xaad4654a3234aa6118af9b4b335f5ae81c360b2394721c019b5d1e75328b09f3",
        "insertTime": 1599621997000,
        "transferType": 0,
        "unlockConfirm": "12/12",
        "confirmTimes": "12/12"
    }
]
Modified at 2024-07-02 04:51:07
Previous
Account API Trading Status
Next
Get Crypto Withdraw History
Built with