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

# Get Transfer

> Retrieve a single transfer

Returns a single transfer batch by ID.

**Permission:** `transfer_batches:read`

## Path parameters

<ParamField path="id" type="string" required>
  The transfer ID
</ParamField>

## Response

```json theme={null}
{
  "data": {
    "id": "xfer_abc123",
    "fromFboAccountId": "fbo_abc123",
    "toFboAccountId": "fbo_def456",
    "organizationId": "org_abc123",
    "status": "completed",
    "totalItems": 5,
    "approvedBySystem": true,
    "notes": "Quarterly rebalance",
    "completedAt": 1747738500000,
    "createdAt": "2025-05-20T11:00:00Z"
  }
}
```
