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

> List valid identification document types for a country.

Retrieves all valid identification document types for a specific country. Requires an API key with access level 1 or higher.

## Path parameters

<ParamField path="countryCode" type="string" required>
  ISO country code (e.g., `US`, `MX`, `BR`).
</ParamField>

## Response

Returns an array of identification type objects.

<ResponseField name="type" type="string">
  Identification type code (e.g., `SSN`).
</ResponseField>

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

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

<ResponseExample>
  ```json 200 OK theme={null}
  [
    {
      "type": "SSN",
      "description": "Social Security Number"
    }
  ]
  ```

  ```json 404 Not Found theme={null}
  {
    "code": "NOT_FOUND",
    "message": "Country not found or no identification types available"
  }
  ```
</ResponseExample>
