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

Fiat Withdrawal (Advanced)

POST
/sapi/v1/fiat/withdraw
DESCRIPTION
Initiates a fiat currency withdrawal request from the user's account to their linked bank account.
NOTE
This is an advanced feature. Please contact a Maxbit operator to request access.

Request

Query Params
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}}
Body Params application/json
currency
string 
required
bankId
string 
required
amount
string 
required
Example
{
    "currency": "THB",
    "bankId": "0757943633",
    "amount": "1000000"
}

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 POST 'https://endpoint-gateway.maxbit.com/sapi/v1/fiat/withdraw?timestamp=1718855898528&signature={{signature}}' \
--header 'X-MBX-APIKEY: {{maxbit-api-key}}' \
--header 'Content-Type: application/json' \
--data-raw '{
    "currency": "THB",
    "bankId": "0757943633",
    "amount": "1000000"
}'

Responses

🟢200Success
application/json
Body
object {0}
Example
{
    "currency": "string",
    "bankId": "string",
    "amount": 0
}
Modified at 2024-07-10 03:31:12
Previous
Get User Banks
Next
Get Trading pair
Built with