---
title: "Get products"
method: GET
path: "/consumers/{consumer_id}/pos/products"
tags: ["Point of Sale", "Products"]
---

# Get products

`GET /consumers/{consumer_id}/pos/products`

Returns a list of products

## Path parameters

- `consumer_id` string, uuid, required

## Query parameters

- `page` integer
- `size` integer
- `location_id` string, nullable

## Response `200`

Successful Response

- ChiftPagePOSProductItem
  - `items` POSProductItem[], required
    - `id` string, required — Unique identifier of the product
    - `categories` string[], nullable — List of categories the product belongs to
    - `name` string, required — Name ofthe product
    - `description` string, nullable — Description of the product
    - `prices` ProductPriceItem[], required — List of prices for the product
      - `unit_price` number, required — Unit price (without tax) of the product
      - `tax_rate` number, nullable — Tax rate applied to the product
    - `accounting_category_ids` string[], nullable — Used by a POS to give one or more specific accounting categories to a product item. If not available it will use the category ids
  - `total` integer, required
  - `page` integer, required
  - `size` integer, required

## Other responses

- `400` — Bad Request
- `405` — Method Not Allowed
- `422` — Validation Error
- `502` — Bad Gateway

---

[API](https://skmtc.dev/chift/apis/chift-api.md) · [All operations](https://skmtc.dev/chift/apis/chift-api/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/chift/chift-api/revisions/b5f1214a482a/schema)
