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

# Consultar saque

> Consulte um saque pelo UUID público.

Consulta um saque da loja vinculada ao token. Requer `withdrawals:read`.

<ParamField path="id" type="string" required>
  UUID público do saque.
</ParamField>

<ResponseExample>
  ```json theme={null}
  {
    "id": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
    "store": { "id": "uuid-da-loja", "name": "Padrão" },
    "status": "sent",
    "amount": 50,
    "fee": 5,
    "net": 45,
    "currency": "BRL",
    "notification_url": "https://loja.com/webhooks/agitapay",
    "notes": null,
    "created_at": "2026-09-02T16:00:00Z",
    "updated_at": "2026-09-02T16:02:00Z"
  }
  ```
</ResponseExample>

O objeto não expõe a chave PIX. Um saque inexistente ou de outra loja retorna `404 not_found`.
