Skip to main content
GET
/
management
/
clients
/
countries
curl -X GET "https://api.cryptomate.me/management/clients/countries" \
  -H "X-API-KEY: $CRYPTOMATE_API_KEY"
{
  "count": 50,
  "data": [
    {
      "name": "United States",
      "alpha3": "USA",
      "postal_code_format": "#####",
      "subdivisions": []
    }
  ]
}
Retrieves a list of all supported countries with their subdivisions for client registration. Requires an API key with access level 1 or higher.

Response

count
integer
Total number of countries.
data
array
List of country details. Each item has name, alpha3, postal_code_format, and a subdivisions array.
curl -X GET "https://api.cryptomate.me/management/clients/countries" \
  -H "X-API-KEY: $CRYPTOMATE_API_KEY"
{
  "count": 50,
  "data": [
    {
      "name": "United States",
      "alpha3": "USA",
      "postal_code_format": "#####",
      "subdivisions": []
    }
  ]
}