# Accounts Countries List List all countries with optional filtering by name, codes, or search term Endpoint: GET /accounts/countries Version: 1.0 Security: Bearer ## Query parameters: - `limit` (integer) Number of results to return per page. - `offset` (integer) The initial index from which to return the results. - `search` (string) Search countries by name (case-insensitive partial match) - `name` (string) Filter by exact country name - `alpha_2` (string) Filter by 2-letter country code (e.g., 'US', 'GB') - `alpha_3` (string) Filter by 3-letter country code (e.g., 'USA', 'GBR') - `numeric` (string) Filter by numeric country code (e.g., '840' for US) ## Response 200 fields (application/json): - `name` (string) - `alpha_2` (string) - `alpha_3` (string) - `numeric` (string) - `official_name` (string,null) - `flag` (string,null)