v1

latestOpenAPI 3.0.02026-07-24103118224.7 KB
Accounts

Get a payout quote for a destination

Returns a quote for a payout to the specified destination, including fees and exchange rate when applicable.

get/api/quote/{accountId}

Path parameters

accountIdstring required
Example:acc_1234567890abcdef

Unique identifier of the payout destination

Query parameters

amountnumber required
Example:10000

Payout amount in cents of the source currency

currency'USDC' | 'EURC' required

Source currency used to quote the payout

Response

Get a payout quote for a destination successful

quotedAmountstring required

Net amount that will be received by the destination, after fees

currencystring required

Source currency of the payout

Example response

{
  "quotedAmount": "98.50",
  "currency": "USDC",
  "fee": {
    "fixedInCents": 50,
    "totalFeeAmountInCents": 150,
    "variableRate": 0.005
  }
}