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

# List par levels

> Returns par levels for a vendor. Par levels define the target stock quantity for an item at a specific store.

<ParamField header="x-api-key" type="string" required>
  API key with `catalog:read` scope.
</ParamField>

<ParamField path="vendorId" type="string" required>
  Vendor UUID.
</ParamField>

<ParamField query="store_id" type="string">
  Filter by store UUID.
</ParamField>

<ParamField query="limit" type="number">
  Results per page (1–200, default 50).
</ParamField>

<ParamField query="offset" type="number">
  Pagination offset (default 0).
</ParamField>

<ResponseField name="items" type="object[]">
  Par level records: `id`, `account_id`, `vendor_id`, `store_id`, `item_id`, `par_qty_base`, `metadata`, `created_at`, `updated_at`.
</ResponseField>

<ResponseField name="total" type="number">
  Total matching records.
</ResponseField>

<ResponseField name="limit" type="number">
  Current page size.
</ResponseField>

<ResponseField name="offset" type="number">
  Current offset.
</ResponseField>

<ResponseExample>
  ```json 200 theme={null}
  {
    "items": [
      {
        "id": "par_01...",
        "account_id": "acc_01...",
        "vendor_id": "vnd_01...",
        "store_id": "str_main_01...",
        "item_id": "itm_chicken_01...",
        "par_qty_base": 10000,
        "metadata": {},
        "created_at": "2026-08-01T00:00:00.000Z",
        "updated_at": "2026-08-01T00:00:00.000Z"
      }
    ],
    "total": 1,
    "limit": 50,
    "offset": 0
  }
  ```
</ResponseExample>
