> ## 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 documentation checklist

> Retrieve a client documentation checklist by ID.

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

Retrieves the documentation checklist required for client creation. Requires an API key with access level 1 or higher.

## Path parameters

<ParamField path="checklistId" type="string" required>
  Unique identifier of the documentation checklist.
</ParamField>

## Response

<ResponseField name="id" type="string">
  Checklist identifier.
</ResponseField>

<ResponseField name="name" type="string">
  Checklist name.
</ResponseField>

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

<ResponseField name="document_groups" type="array">
  List of document groups, each with `id`, `name`, `description`, `required`, and `valid_documents`.
</ResponseField>

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

<ResponseExample>
  ```json 200 OK theme={null}
  {
    "id": "checklist_abc123",
    "name": "Standard KYC Verification",
    "description": "Documents required for individual verification",
    "document_groups": [
      {
        "id": "dg_identity",
        "name": "Identity Documents",
        "description": "Government-issued identification documents",
        "required": true,
        "valid_documents": []
      }
    ]
  }
  ```

  ```json 404 Not Found theme={null}
  {
    "code": "NOT_FOUND",
    "message": "Checklist 'checklist_abc123' not found in CheckDoc service. Please ensure the checklist is configured."
  }
  ```
</ResponseExample>
