After a transaction completes, the user is redirected to the URL you provide via `redirectURL`. Transak automatically appends the following query parameters so you can track the transaction on your end.
| Parameter | Description |
| ------------------- | -------------------------------------------- |
| `orderId` | Transak order ID |
| `fiatCurrency` | Payout fiat currency |
| `cryptoCurrency` | Token symbol to be transferred |
| `fiatAmount` | Expected payout fiat amount |
| `cryptoAmount` | Amount of crypto to be transferred |
| `isBuyOrSell` | `Sell` for off-ramp flows |
| `status` | Transak order status |
| `walletAddress` | Destination wallet address |
| `totalFeeInFiat` | Total fee charged in local currency |
| `partnerCustomerId` | Partner's customer ID (if present) |
| `partnerOrderId` | Partner's order ID (if present) |
| `network` | Network on which the crypto transfer is made |
**Example redirect URL:**
```
https://www.url.com/?orderId={{id}}&fiatCurrency={{code}}&cryptoCurrency={{code}}&fiatAmount={{amount}}&cryptoAmount={{amount}}&isBuyorSell=Sell&status={{orderStatus}}&walletAddress={{address}}&totalFeeInFiat={{amount}}&partnerCustomerId={{id}}&partnerOrderId={{id}}&network={{code}}
```
The `redirectURL` parameter is supported across all integration methods — SDK, iFrame, Redirect Link, Webview, and React Native SDK. However, **deeplinking** (for example, redirecting users back into a mobile app) is only supported with the **Browser Redirection** integration method.