Check order status

With the orderId created, you can fetch the status of the order

Check order details

curl --request GET \
     --url https://sandbox-api.transfi.com/v2/orders/OR-250428100239802 \
     --header 'accept: application/json' \
     --header 'authorization: Basic dHJhbnNmaV9xYTo='
{
  "status": "success",
  "data": {
    "orderId": "OR-250428100239802",
    "type": "buy",
    "depositCurrency": "EUR",
    "depositAmount": 100,
    "withdrawCurrency": "USDC",
    "withdrawAmount": 113.493896,
    "status": "initiated",
    "senderName": {
      "firstName": "John",
      "lastName": "Doe"
    },
    "mid": "TSAJOG_NA_NA",
    "fees": {
      "networkFee": 0.15,
      "processingFee": 0,
      "fixedFee": {
        "totalFixedFees": 0,
        "totalFixedTfFees": 0,
        "totalFixedCxFees": 0,
        "fixedFeesCurrency": ""
      },
      "feeMode": "percentage"
    },
    "partnerId": "",
    "bankTxnId": [],
    "exchangeRate": 1.136643922421779,
    "userId": "RE-240912102233213"
  }
}