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

> Retrieve a single inventory item

Returns a single inventory item by ID.

**Permission:** `inventory:read`

## Path parameters

<ParamField path="itemId" type="string" required>
  The inventory item 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"
  }
}
```
