Send cross-border payments to recipients via local bank transfer, mobile money, and more
Payouts follow a structured flow: discover the payment method for the destination country, collect recipient bank details, then initiate the transfer. Using a quote first locks your exchange rate for 5 minutes.
Type Definitions
Copy
Ask AI
interface PayoutMethod { id: number; method_name: string; country: string; currency: string; base_currency: string;}interface BeneficiaryPaymentMethod { id: string; beneficiary_id: string; payment_method_id: number; account_details: Record<string, string>; created_at: string;}interface PayoutRequest { debit_wallet: string; // currency to debit from your balance, e.g. "USD" payment_method_id: number; amount?: number; // required if no quote_id quote_id?: string; // from /exchange-rate (recommended, locks rate for 5 mins)}
Use GET /payment-methods/payout/countries to retrieve the full list of supported destinations.
Copy
Ask AI
curl -X GET 'https://api.yativo.com/api/v1/payment-methods/payout/countries' \ -H 'Authorization: Bearer YOUR_ACCESS_TOKEN'
Yativo supports payouts to LATAM countries (CHL, MEX, PER, COL, ARG), USA, and stablecoin wallets. Contact your integration team for enterprise destinations.