> ## Documentation Index
> Fetch the complete documentation index at: https://docs.cryptomate.me/llms.txt
> Use this file to discover all available pages before exploring further.

# Get supported countries

> List all supported countries and their subdivisions.

<Warning>
  **Deprecated.** This endpoint is no longer part of the public API. Use [Get supported countries](/api-reference/management/individual-clients/get-countries) under **Individual Clients** instead.
</Warning>

Retrieves a list of all supported countries with their subdivisions for client registration. Requires an API key with access level 1 or higher.

## Response

<ResponseField name="count" type="integer">
  Total number of countries.
</ResponseField>

<ResponseField name="data" type="array">
  List of country details. Each item has `name`, `alpha3`, `postal_code_format`, and a `subdivisions` array.
</ResponseField>

<RequestExample>
  ```bash cURL theme={null}
  curl -X GET "https://api.cryptomate.me/management/clients/countries" \
    -H "x-api-key: $CRYPTOMATE_API_KEY"
  ```
</RequestExample>

<ResponseExample>
  ```json 200 OK theme={null}
  {
    "count": 50,
    "data": [
      {
        "name": "United States",
        "alpha3": "USA",
        "postal_code_format": "#####",
        "subdivisions": []
      }
    ]
  }
  ```
</ResponseExample>
