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 Fiat Transactions

GET
/sapi/v1/fiat/orders
DESCRIPTION
Retrieves the history of fiat transactions for a user's account, including detailed information about deposits and withdrawals of fiat currencies.

Request

Query Params
transactionType
string 
required
0-deposit, 1-withdraw
Example:
0
status
string 
optional
0:Email Sent,1:Cancelled 2:Awaiting Approval 3:Rejected 4:Processing 5:Failure 6:Completed
Example:
0
beginTime
string 
optional
If beginTime and endTime are not sent, the recent 30-day data will be returned.
Example:
1718855898528
endTime
string 
optional
If beginTime and endTime are not sent, the recent 30-day data will be returned.
Example:
1718855898528
page
string 
optional
Default: 1
Example:
1
rows
string 
optional
Default:100, Max:500
Example:
100
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/fiat/orders?transactionType=0&status=0&beginTime=1718855898528&endTime=1718855898528&page=1&rows=100&timestamp=1718855898528&signature={{signature}}' \
--header 'X-MBX-APIKEY: {{maxbit-api-key}}' \
--header 'Content-Type: application/json'

Responses

🟢200Success
application/json
Body
object {0}
Example
{
    "code": "000000",
    "message": "success",
    "data": [
        {
            "orderNo": "7d76d611-0568-4f43-afb6-24cac7767365",
            "fiatCurrency": "BRL",
            "indicatedAmount": "10.00",
            "amount": "10.00",
            "totalFee": "0.00",
            "method": "BankAccount",
            "status": "Expired",
            "createTime": 1626144956000,
            "updateTime": 1626400907000
        }
    ],
    "total": 1,
    "success": true
}
Modified at 2024-07-02 04:51:01
Previous
Get Crypto Withdraw History
Next
Get User Banks
Built with