Improved

February 14th 2026

Improved

Get country list

Enhanced the GET endpoint /payout/country/list by extending the Country object to include available generic services per country.

  • The Country schema now includes a new required field: generic_options.

    • generic_options (array of strings) — List of generic option services available in the country (e.g., LOCAL_BANK_DEPOSIT). Empty if no generic payers are available.
  • Example responses have been updated to include generic_options alongside code, name, three_letter_code, and iso_numeric.

200 Response (example)

[
  {
    "code": "MX",
    "name": "Mexico",
    "three_letter_code": "MEX",
    "iso_numeric": 484,
    "generic_options": ["LOCAL_BANK_DEPOSIT"]
  }
]

Backward compatibility Existing clients that ignore unknown fields require no changes. Clients that need to display or filter by available generic services can now use generic_options directly.