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

# Buscar tarefa por ID

> Retorna uma única tarefa do workspace pelo seu ID.

## Autenticação

<ParamField header="Authorization" type="string" required>
  `Bearer vg_live_<sua_chave>` — API Key com escopo `tasks:read`
</ParamField>

Retorna `{ data: TaskDTO }`. Responde `404 NOT_FOUND` se a tarefa não existir no workspace.

<RequestExample>
  ```bash cURL theme={null}
  curl https://crm.vistum.com.br/api/v1/tasks/task_1 \
    -H "Authorization: Bearer vg_live_SUA_CHAVE_AQUI"
  ```
</RequestExample>

<ResponseExample>
  ```json 200 — OK theme={null}
  { "data": { "id": "task_1", "title": "Ligar para retomar proposta", "status": "pending", "dueDate": "2026-07-22T13:00:00.000Z", "...": "..." } }
  ```
</ResponseExample>
