> ## 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 negócio por ID

> Retorna um único negócio (card do pipeline) do workspace pelo seu ID.

## Autenticação

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

Retorna `404` (`NOT_FOUND`) se o negócio não existir, estiver excluído ou pertencer a outro workspace.

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

<ResponseExample>
  ```json 200 — OK theme={null}
  { "data": { "id": "card_def456ghi", "name": "João Ferreira", "status": "open", "...": "..." } }
  ```
</ResponseExample>
