---
title: "Get products list (with many filters)"
method: GET
path: "/crm/v1/static/products"
tags: ["products"]
---

# Get products list (with many filters)

`GET /crm/v1/static/products`

Returns a paginated list of products. Supports filtering by category, availability, type, etc.
Example: `GET /crm/v1/static/products?page=1&list=20`

## Query parameters

- `page` integer
- `list` integer

## Response `200`

Successful response

- object
  - `data` Product[]
    - `id` integer
    - `product_category_id` integer
    - `measurement_unit_id` integer
    - `title` string
    - `article` string
    - `type` 'goods' | 'service'
    - `is_active` boolean
    - `availability` 'available' | 'not_available' | 'pending'
    - `quantity` number
    - `reserved_quantity` number
    - `description` string
    - `comment` string
    - `link` string
    - `created_at` integer
    - `updated_at` integer
    - `product_category` ProductCategory
      - `id` integer
      - `parent_id` integer
      - `name` string
      - `is_active` boolean
      - `created_at` integer
      - `updated_at` integer
      - `child_categories` ProductCategory[]
    - `measurement_unit` MeasurementUnit
      - `id` integer
      - `name` string
      - `abbr` string
      - `is_default` boolean
    - `prices` ProductPrice[]
      - `id` integer
      - `price` integer
      - `currency` string
      - `is_default` boolean
      - `tax` Tax
        - `id` integer
        - `name` string
        - `rate` number
        - `is_active` boolean
    - `files` string[]
  - `meta` Meta
    - `currentPage` integer
    - `from` integer
    - `lastPage` integer
    - `links` object[]
      - `url` string
      - `label` string
      - `active` boolean
    - `path` string
    - `perPage` integer
    - `to` integer
    - `total` integer

## Other responses

- `401` — Access token is missing or invalid

---

[API](https://skmtc.net/uspacy/apis/crm-service.md) · [All operations](https://skmtc.net/uspacy/apis/crm-service/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/uspacy/crm-service/revisions/f80578d43845/schema)
