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

> List inventory items

Returns a paginated list of inventory items within the organization.

**Permission:** `inventory: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 item status. One of `in_vault`, `pending_transfer`, `pending_outbound`, `shipped_out`, `returned`, `void`.
</ParamField>

<ParamField query="fboAccountId" type="string">
  Filter by FBO account ID
</ParamField>

## Response

```json theme={null}
{
  "data": [
    {
      "id": "inv_abc123",
      "internalIdentifier": "100234",
      "productId": "prod_abc123",
      "ownerOrganizationId": "org_abc123",
      "fboAccountId": "fbo_abc123",
      "inboundShipmentId": "ship_in_xyz789",
      "serialNumber": "AE-2025-001",
      "status": "in_vault",
      "createdAt": "2025-04-01T14:00:00Z"
    }
  ],
  "pagination": {
    "page": 1,
    "hasMore": false
  }
}
```
