Payout Estimate
payout_estimateEstimate what actually lands in the bank after processing fees. PREMIUM (license).
Typical input {"order_total": 84.5, "fee_pct": 2.9, "fee_fixed": 0.3, "orders": 120, "refund_rate_pct": 4} returns {"gross": 10140.0, "fees": 330.06, "refunds": 405.6, "net_payout": 9404.34, "effective_fee_pct": 3.26}.
Use for cash-flow planning. Not as an authoritative fee schedule: rates depend on your plan, country and card mix, so pass your own. Errors: on invalid, missing, or malformed input this tool never raises a protocol error — it returns {"error": ""}. Every call is read-only and idempotent, so after correcting the input it is always safe to retry.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| orders | No | How many orders to model. Default 1. | |
| fee_pct | No | Percentage fee per transaction. Default 2.9 — a common published rate, not a promise about your account. | |
| fee_fixed | No | Fixed fee per transaction. Default 0.30. | |
| order_total | Yes | Value of one order including anything the processor takes a percentage of. Must be greater than 0. | |
| refund_rate_pct | No | Share of order value refunded, as a percentage. Default 0. |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||