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 Withdraw History

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

Request

Query Params
coin
string 
optional
Input asset symbol
E.g. BTC, ETH,...
If left blank, it will return all asset addresses.
Example:
ETH
status
string 
optional
0(0:Email Sent,1:Cancelled 2:Awaiting Approval 3:Rejected 4:Processing 5:Failure 6:Completed)
Example:
0
startTime
string 
optional
Default: 90 days from current timestamp
Example:
1718855898528
endTime
string 
optional
Default: present timestamp
Example:
1718855898528
offset
string 
optional
Default: 0
limit
string 
optional
Default:1000, Max:1000
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/withdraw/history?coin=ETH&status=0&startTime=1718855898528&endTime=1718855898528&offset=&limit=&timestamp=1718855898528&signature={{signature}}' \
--header 'X-MBX-APIKEY: {{maxbit-api-key}}' \
--header 'Content-Type: application/json'

Responses

🟢200Success
application/json
Body
object {0}
Example
[
    {
        "address": "0x94df8b352de7f46f64b01d3666bf6e936e44ce60",
        "amount": "8.91000000",
        "applyTime": "2019-10-12 11:12:02",
        "coin": "USDT",
        "id": "b6ae22b3aa844210a7041aee7589627c",
        "withdrawOrderId": "WITHDRAWtest123",
        "network": "ETH",
        "transferType": 0,
        "status": 6,
        "transactionFee": "0.004",
        "confirmNo": 3,
        "info": "The address is not valid. Please confirm with the recipient",
        "txId": "0xb5ef8c13b968a406cc62a93a8bd80f9e9a906ef1b3fcf20a2e48573c17659268"
    }
]
Modified at 2024-07-02 04:51:04
Previous
Get Crypto Deposit History
Next
Get Fiat Transactions
Built with