---
title: "GET /api/public/products"
method: GET
path: "/api/public/products"
tags: ["Products"]
---

# GET /api/public/products

`GET /api/public/products`

List the current key's coach products. Filter by productType, isActive or name.

## Query parameters

- `page` integer
- `limit` integer
- `productType` 'SINGLE' | 'PUNCH_CARD' | 'MEMBERSHIP'
- `isActive` boolean
- `name` string

## Response `200`

Successful response

- object — Successful response
  - `data` object[]
    - `id` string
    - `coachId` string
    - `name` string
    - `description` string
    - `price` number
    - `currency` 'ILS' | 'USD' | 'EUR' | 'GBP'
    - `productType` 'SINGLE' | 'PUNCH_CARD' | 'MEMBERSHIP'
    - `productCategory` string
    - `credits` number, nullable
    - `isActive` boolean
    - `hidePriceInApp` boolean
    - `membershipDetails` object, nullable
      - `duration` object
        - `value` number
        - `unit` 'DAY' | 'WEEK' | 'MONTH' | 'YEAR'
      - `recurrence` 'DAILY' | 'WEEKLY' | 'MONTHLY' | 'YEARLY' | 'ONE_TIME'
      - `limitations` object
        - `isUnlimited` boolean
        - `periodicalUsage` object
          - `usagesPerPeriod` number
          - `periodType` string
        - `allowedHours` object
          - `from` string
          - `to` string
        - `allowedDays` string[]
    - `createdAt` string, date-time
    - `updatedAt` string, date-time
  - `pagination` object
    - `page` number
    - `limit` number
    - `total` number, nullable — Total number of matching items. null when the underlying source cannot report an exact count for this page; use hasMore to keep paging.
    - `hasMore` boolean
    - `truncated` boolean — Present and true when the result set exceeded the in-memory scan cap and was truncated. Narrow your filters to page through all items.

## Other responses

- `400` — Default Response
- `401` — Default Response
- `403` — Default Response
- `429` — Default Response
- `500` — Default Response

---

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