---
title: "List products"
method: GET
path: "/apps/{appId}/products"
tags: ["Products"]
---

# List products

`GET /apps/{appId}/products`

Get list of products

## Path parameters

- `appId` integer, required

## Query parameters

- `offset` integer
- `limit` integer
- `search` string
- `filters` object[]
  - `name` string
  - `value` string
  - `comparator` '=' | '<' | '>' | '<=' | '>=' | '!=' | 'LIKE' | 'IN' | 'REGEX' | 'NOT LIKE' | 'NOT <=>' | '<=>'
- `order` object[]
  - `name` string — Column name
  - `direction` 'asc' | 'desc' | 'closest'
  - `value` integer — Value for closest amount

## Response `200`

Success

- Product[]
  - `id` integer
  - `name` string
  - `amount_accurately` integer — Price without taxes in milli-cents
  - `vat_percent` integer — VAT rate in cents
  - `currency` string
  - `image` union
    - string, binary
    - string, uri
  - `lifetime` integer — Product life time in seconds
  - `description` string
  - `unity` string — Unity, hours, days, meters, liters..
  - `intangible` boolean — Is a service or a product ?
  - `quantity_name` string — Name of the quantity: days, liters, m2, m3...
  - `reference` string
  - `accounting_number` string
  - `tags` string[]
  - `category` ProductCategory
    - `id` integer
    - `name` string
    - `image` union
      - string, binary
      - string, uri
    - `parent` ProductCategory — recursive
    - `products` Product — recursive
  - `metadata` unknown[], nullable
    - unknown

## Other responses

- `404` — Not found

---

[API](https://skmtc.net/sinao/apis/sinao-api.md) · [All operations](https://skmtc.net/sinao/apis/sinao-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/sinao/sinao-api/versions/436b47b78bf4/schema)
