Withdrawals under the Travel Rule Threshold

When the amount of digital assets transferred is under 1,000 euros, your transaction does not need to comply with the Travel Rule.

To execute a withdrawal under 1,000 euros, complete the following HTTP request using the appropriate body parameters:

POST https://stage.buildwithjuno.com/mint_platform/v1/withdrawals

Body Parameters

  • blockchain (string): Network through which the withdrawal is processed. At the moment, only "ARBITRUM" is supported.
  • asset (string): The digital asset in a network. At the moment, only "MXNB" is supported.
  • amount (string): The amount to be withdraw. This value should be a positive number representing the monetary amount to be withdraw.
  • address (string): Destination address where the withdrawal is to be deposited. Must be a valid Arbitrum address.
  • compliance (json): In this case, no travel rule information is required.

Header Parameters

  • X-Idempotency-Key : Specifies a UUID (version 1) that must be unique for each redemption attempt. Reusing the same idempotency key will prompt the system to return the status of the original transaction associated with that key. Therefore, ensuring the uniqueness of the key for every redemption request is of utmost importance. If your client application does not handle idempotency keys, you can safely omit this parameter from your request header.

The following object exemplifies the required body parameters to include in the HTTP request for making a crypto withdrawal.

{
   "blockchain": "ARBITRUM",
   "asset": "MXNB",
   "amount": "1000",
   "address": "0x871697383394d6fbB253A2D6c799C398dAe08365",
   "compliance": {}
 }