> ## 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 business identification types by country

> List valid business identification types for a country.

<Warning>
  **Deprecated.** This endpoint is no longer available in the public API and is kept for reference only.
</Warning>

Retrieves all valid business identification document types (EIN, VAT, TIN, etc.) for a specific country. Requires an API key with access level 1 or higher.

## Path parameters

<ParamField path="countryCode" type="string" required>
  ISO 3166-1 alpha-3 country code (e.g., `USA`, `MEX`, `BRA`).
</ParamField>

## Response

<ResponseField name="type" type="string">
  Identification type code.
</ResponseField>

<ResponseField name="description" type="string">
  Identification type description.
</ResponseField>

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

<ResponseExample>
  ```json 200 OK theme={null}
  [
    {
      "type": "EIN",
      "description": "Employer Identification Number"
    }
  ]
  ```
</ResponseExample>
