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

> Returns all stores (physical locations) for a vendor, with optional pagination and status filtering.

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

<ParamField path="vendorId" type="string" required>
  Vendor 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>

<ParamField query="status" type="string">
  Filter by `ACTIVE` or `INACTIVE`.
</ParamField>

<ResponseField name="items" type="object[]">
  Array of store objects: `id`, `account_id`, `code`, `name`, `timezone`, `status`, `external_store_id`, `tax_id`, `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": "str_main_01...",
        "account_id": "acc_01j5k...",
        "code": "STR-001",
        "name": "Main Kitchen",
        "timezone": "America/Mexico_City",
        "status": "ACTIVE",
        "external_store_id": "store-main",
        "tax_id": "0991234560001",
        "created_at": "2026-01-01T00:00:00.000Z",
        "updated_at": "2026-01-01T00:00:00.000Z"
      }
    ],
    "total": 1,
    "limit": 50,
    "offset": 0
  }
  ```
</ResponseExample>
