# GET /api/checklists/items > Checklists - List Checklist Items of a Task - **Endpoint:** `GET /api/checklists/items` - **Group:** Checklists - **Since:** v1.0.0 - **Defined in:** `RestApi/Controllers/ChecklistsController.php` ## Headers | Field | Type | Description | | --- | --- | --- | | `authtoken` | String | Authentication token, generated from admin area | ## Parameters | Field | Type | Required | Description | | --- | --- | --- | --- | | `task_id` | Number | yes | Mandatory Task ID the checklist belongs to, must be 1 or more | | `limit` | Number | no | Optional page size, 1 to 200 Default: `50`. | | `offset` | Number | no | Optional number of rows to skip Default: `0`. | ## Request example ```bash curl -X GET "https://yoursite.com/index.php/api/checklists/items" \ -H "authtoken: YOUR_API_TOKEN" ``` ## Responses ### Success - Success-Response: ```json HTTP/1.1 200 OK [ { "id": "7", "title": "Attach the signed SOW", "is_checked": "0", "task_id": "42", "sort": "1000", "new_sort": "1000", "client_id": "5" } ] ``` --- Part of the [REST API for RISE CRM](https://risecrm.themesic.com/apiguide/) documentation. Full page: https://risecrm.themesic.com/apiguide/checklists/get-checklist-items/