> ## Documentation Index
> Fetch the complete documentation index at: https://docs.getkato.io/llms.txt
> Use this file to discover all available pages before exploring further.

# Get a task

> Retrieve a task by ID, including its current schedule and assignees.

Retrieve a task by ID, including its current schedule and assignees.

Use a developer access key. See [authentication, errors, and rate limits](/api-reference/authentication).

Required scopes: `tasks:read`.

Task access uses the owner’s current workspace role. Non-admin members can access tasks they created or are assigned to; inaccessible tasks return `404`. See [task visibility](/api-reference/tasks/overview#visibility). A visible archived task can be retrieved. Response names include `dueDate` and `estimatedTime`, unlike the snake\_case write parameters.

## Parameters

<ParamField path="taskId" type="string" required>
  Task ID accessible to the key owner.
</ParamField>

## Response

**200** — Returns the resource under `data`. Example IDs and values are illustrative.

<ResponseExample>
  ```json 200 theme={null}
  {
    "data": {
      "id": "task_example",
      "title": "Prepare kickoff",
      "description": null,
      "status": "todo",
      "priority": "no_priority",
      "assignees": [],
      "start_date": null,
      "dueDate": null,
      "parent_task_id": null,
      "timeLogged": 0,
      "estimatedTime": null,
      "archived": false,
      "createdBy": "user_example",
      "createdAt": "2026-09-07T12:00:00.000Z",
      "updatedAt": "2026-09-07T12:00:00.000Z"
    }
  }
  ```
</ResponseExample>

<RequestExample>
  ```bash Request theme={null}
  curl --fail-with-body --silent --show-error \
    "https://api.getkato.io/v1/tasks/$KATO_TASK_ID" \
    -H "Authorization: Bearer $KATO_API_KEY"
  ```
</RequestExample>

Set path-ID environment variables to values returned by your workspace before running the request.


## Related topics

- [Get task creation options](/api-reference/raycast/task-options.md)
- [Tasks API](/api-reference/tasks/overview.md)
- [All endpoints](/api-reference/endpoints.md)
- [Raycast API](/api-reference/raycast/overview.md)
- [Get Raycast task details](/api-reference/raycast/tasks-get.md)
