> ## 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.

# Get Supported Countries

> Retrieve the full list of countries supported for payout destinations

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
```

<RequestExample>
  ```bash cURL theme={null}
  curl -X GET 'https://api.yativo.com/api/v1/payment-methods/payout/countries' \
    -H 'Authorization: Bearer YOUR_ACCESS_TOKEN'
  ```
</RequestExample>

<ResponseExample>
  ```json Success theme={null}
  {
    "status": "success",
    "status_code": 200,
    "message": "Request successful",
    "data": [
      { "iso3": "ARG", "iso2": "AR", "name": "Argentina" },
      { "iso3": "BRA", "iso2": "BR", "name": "Brazil" },
      { "iso3": "CHL", "iso2": "CL", "name": "Chile" },
      { "iso3": "COL", "iso2": "CO", "name": "Colombia" },
      { "iso3": "ECU", "iso2": "EC", "name": "Ecuador" },
      { "iso3": "MEX", "iso2": "MX", "name": "Mexico" },
      { "iso3": "PAN", "iso2": "PA", "name": "Panama" },
      { "iso3": "PER", "iso2": "PE", "name": "Peru" },
      { "iso3": "USA", "iso2": "US", "name": "United States" },
      { "iso3": "URY", "iso2": "UY", "name": "Uruguay" }
    ]
  }
  ```
</ResponseExample>
