Calculate Crypto Transfer Fee
Crypto Transfers
Calculate Crypto Transfer Fee
Calculate the payout fee for a crypto transfer in USDC or USDT
GET
Calculate Crypto Transfer Fee
Query Parameters
The transfer amount for which to calculate the fee. Must be a positive number (minimum
0.01).The stablecoin to calculate fees for. Must be one of:
usdc, usdt (case-insensitive; values are normalized to lowercase).Request Example
This endpoint uses GET with query parameters, not a JSON body. When using
curl in a shell, wrap the full URL in quotes (or use curl -g) so & between query parameters is not treated as a background operator.Response
| Field | Description |
|---|---|
data.amount | The amount you passed in the query |
data.currency | The stablecoin (usdc or usdt) |
data.feeAmount | The fee charged for the crypto payout |
data.total | amount + feeAmount (total including fee) |
Validation errors
| HTTP status | Typical cause |
|---|---|
422 | Missing or invalid query params (e.g. amount not a positive number, currency empty or not usdc/usdt) |
400 | amount or currency missing after validation, or unsupported currency at the service layer |