> ## 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.

# List Transfers

> List inventory transfers

Returns a paginated list of inventory transfers between FBO accounts within the organization.

**Permission:** `transfer_batches:read`

## Query parameters

<ParamField query="page" type="number" default="1">
  1-indexed page number.
</ParamField>

<ParamField query="limit" type="number" default="25">
  Number of results per page (max 100).
</ParamField>

<ParamField query="status" type="string">
  Filter by transfer status. One of `pending`, `approved`, `denied`, `completed`, `partially_completed`.
</ParamField>

## Response

```json theme={null}
{
  "data": [
    {
      "id": "xfer_abc123",
      "fromFboAccountId": "fbo_abc123",
      "toFboAccountId": "fbo_def456",
      "organizationId": "org_abc123",
      "status": "completed",
      "totalItems": 5,
      "approvedBySystem": true,
      "completedAt": 1747738500000,
      "createdAt": "2025-05-20T11:00:00Z"
    }
  ],
  "pagination": {
    "page": 1,
    "hasMore": false
  }
}
```
