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

> List and search the product catalog

Returns a paginated list of catalog products. Use this to look up the `productId` values referenced by inbound shipment `lines`, inventory items, and other resources. The catalog is global — the same products are visible to every 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="search" type="string">
  Search products by title or SKU.
</ParamField>

<ParamField query="productType" type="string">
  Filter by product type. One of `precious_metal`, `numismatic`, `miscellaneous`.
</ParamField>

## Response

```json theme={null}
{
  "data": [
    {
      "id": "jh7prod123",
      "title": "1 oz Gold Bar - PAMP Suisse",
      "sku": "PAMP-1OZ-GOLD",
      "productType": "precious_metal",
      "subcategory": "Gold Bars",
      "isSerialized": true,
      "createdAt": "2025-04-01T14:00:00Z"
    }
  ],
  "pagination": {
    "page": 1,
    "hasMore": false
  }
}
```
