# GET /api/tasks/{id} > Tasks - Get Task by ID - **Endpoint:** `GET /api/tasks/{id}` - **Group:** Tasks - **Since:** v1.0.0 - **Defined in:** `RestApi/Controllers/TasksController.php` ## Headers | Field | Type | Description | | --- | --- | --- | | `authtoken` | String | Authentication token, generated from admin area | ## Parameters | Field | Type | Required | Description | | --- | --- | --- | --- | | `id` | Number | yes | Task unique ID | ## Request example ```bash curl -X GET "https://yoursite.com/index.php/api/tasks/123" \ -H "authtoken: YOUR_API_TOKEN" ``` ## Responses ### Success - Success-Response: ```json { "id": "1", "title": "Task Title", "description": "Task description", "project_id": "1", "milestone_id": "0", "assigned_to": "2", "deadline": "2021-12-31 23:59:59", "status": "in_progress", "priority_id": "1", "start_date": "2021-09-01 00:00:00", "created_date": "2021-09-01", "context": "project" } ``` --- Part of the [REST API for RISE CRM](https://risecrm.themesic.com/apiguide/) documentation. Full page: https://risecrm.themesic.com/apiguide/tasks/show-task/