| Field | Type | Description | Constraints |
|---|---|---|---|
productId | string (uuid) | Product identifier | Required |
amount | number (double) | Payout amount | Min: 1 |
fiatCurrency | string | Fiat currency code | Min length: 1 |
payeeId | string (uuid) | Payee identifier | Required |
| Field | Type | Description | Constraints |
|---|---|---|---|
paymentType | string | Payment type | Nullable |
transferType | string | Transfer type | Nullable |
curl --location '/api/v1/payout/crypto/fee' \
--header 'Idempotency-Key: b7e6a1f0-2c3d-4e5f-8a9b-0c1d2e3f4a5b' \
--header 'authinformation;' \
--header 'Content-Type: application/json' \
--data '{
"productId": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
"amount": 1500,
"fiatCurrency": "USD",
"payeeId": "9b2f1c44-8a31-4f0d-9d6e-1c2b3a4d5e6f",
"paymentType": "crypto",
"transferType": "LOCAL"
}'{
"quoteId": "qt_8f3a9b2c",
"fee": 12.5,
"totalAmount": 1512.5,
"exchangeRate": 1,
"expiresAt": "2026-07-16T10:45:00Z"
}