Skip to main content
Version: 1.1.1
POSThttps://dev.yimmit.com/api/v3/liquidity/withdraws/verify
Auth required — send X-Auth-Apikey, X-Auth-Signature and X-Auth-Nonce. How to sign a request

Verify Withdraw

POST api/v3/liquidity/withdraws/verify

Verify whether the withdrawal request is valid and check if it is internal or external.

Parameters

NameTypeMandatoryDescription
currencySTRINGYESCurrency code (e.g., bnb).
blockchain_keySTRINGYESBlockchain network key (e.g., bsc-testnet).
amountSTRINGYESAmount to withdraw.
ridSTRINGYESRecipient wallet address.

Request Body

{
"currency": "bnb",
"blockchain_key": "bsc-testnet",
"amount": "0.05",
"rid": "0x17fe22f2e7e95d28cec73b3815f0020cff41f7b5"
}

Responses

  • 200 Successful response

Returns verification details about the withdrawal request, including whether it's an internal or external transaction and the associated fees.

Response Fields:

  • transaction_type: Type of withdrawal transaction. Either "internal" (to another platform user) or "external" (to a blockchain address)
  • fee_amount: Transaction fee amount in the specified currency
  • admin_fees: Administrative fees charged for the withdrawal

Example

{
"transaction_type": "external",
"fee_amount": 0.01,
"admin_fees": "0.91268"
}