Redeem Your MXNB Tokens to a Bitso Account

If you are looking to redeem your MXNB funds directly into Mexican Pesos (MXN) to your Bitso account, you can do so via Bitso Transfer using the HTTP request detailed below. However, your transaction needs to meet one key requirement:

  • Minimum amount: The minimum amount for an MXNB redemption is 100 MXNB. Any transfer below this will cause the issuance to fail.

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

Body Parameters

  • amount(string): The amount to be redeemed in MXNB. This value should be a positive number.
  • asset(string): The fiat currency used in the transaction. Valid value: MXN.

Header Parameters

  • X-Idempotency-Key: Specifies a UUID (version 1) that must be unique for each issuance 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 JSON object exemplifies the body parameters used:

{
    "amount": "1000",
    "asset": "MXN"
}

A successful request returns a JSON object representing your MXNB stablecoin redemption:

{
    "success": true,
    "payload": {
        "id": "9f6d53e3-cc6d-4ce9-8761-da6591d7bd45",
        "amount": 1000,
        "currency": "MXN",
        "transaction_type": "REDEMPTION",
        "method": "BITSO_TRANSFER",
        "summary_status": "IN_PROGRESS",
        "created_at": "2025-07-07T14:54:16.673308296Z",
        "updated_at": "2025-07-07T14:54:27.039004229Z"
    }
}

Once the Redemption via Bitso Transfer is COMPLETE, the funds will appear in your Bitso MXN balance and can be withdrawn or used within Bitso.