Quote a Fee
Preview the fee that would apply for a given source/destination pair and amount. Useful for surfacing fees to your end user before they confirm a payout.
Bindable quotes (v1.0.0). Every quote response includes a
quote_id (prefix pq_) and an expires_at timestamp. You can
bind the exact quoted fee to a subsequent payout by passing the
quote_id on POST /v1/payouts. If the quote has expired, been
already bound to another payout, or the payout’s currencies/amount
don’t match the quote, the payout create call returns
422 quote_expired / 422 quote_already_used / 422 quote_mismatch.
Omit quote_id on the payout to let the platform re-price at
submission time.
Authorizations
Per-request DPoP proof JWT (RFC 9449). MUST accompany the Authorization: DPoP <access_token> header on every protected operation. The proof is signed by the merchant's private DPoP key and carries htm, htu, iat, jti, and ath claims.
Body
ISO 4217 three-letter currency code.
^[A-Z]{3}$"USD"
ISO 4217 three-letter currency code.
^[A-Z]{3}$"USD"
Decimal amount as a string, never a float. Up to 12 whole digits.
^-?\d{1,12}(\.\d+)?$"1234.56"
ISO 3166-1 alpha-2 country code.
^[A-Z]{2}$"US"
How the payout will be delivered. Distinct from an Instrument's method
(which is the credential format) — this is the rail-family selection.
bank_transfer, wire, sepa, swift, ach, faster_payment, mobile_money, wallet, crypto, layer2, exchange, stablecoin Response
Fee quote.