Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.yativo.com/llms.txt

Use this file to discover all available pages before exploring further.

Returns all countries where Yativo supports outgoing payments. Use this to power country selectors in your application’s payout flow.
GET /payment-methods/payout/countries
curl -X GET 'https://api.yativo.com/api/v1/payment-methods/payout/countries' \
  -H 'Authorization: Bearer YOUR_ACCESS_TOKEN'
{
  "status": "success",
  "status_code": 200,
  "message": "Request successful",
  "data": [
    { "name": "Argentina", "code": "ARG", "currency": "ARS" },
    { "name": "Brazil", "code": "BRA", "currency": "BRL" },
    { "name": "Chile", "code": "CHL", "currency": "CLP" },
    { "name": "Colombia", "code": "COL", "currency": "COP" },
    { "name": "Ecuador", "code": "ECU", "currency": "USD" },
    { "name": "Mexico", "code": "MEX", "currency": "MXN" },
    { "name": "Panama", "code": "PAN", "currency": "USD" },
    { "name": "Peru", "code": "PER", "currency": "PEN" },
    { "name": "United States", "code": "USA", "currency": "USD" },
    { "name": "Uruguay", "code": "URY", "currency": "UYU" }
  ]
}