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

# List products

`GET /products`

Returns a paginated list of products for the authenticated project.
Products are ordered by creation date (newest first).
Manifest-compliant: list envelope, string enums, ISO 8601 timestamps.

## Query parameters

- `limit` integer
- `starting_after` string
- `filter[type]` string

## Response `200`

A paginated list of products.

- V4ProductList
  - `object` 'list', required
  - `url` string, required
  - `data` V4Product[], required
    - `object` 'product', required
    - `id` string, required — Unique product identifier.
    - `url` string, required — Canonical API path.
    - `type` string, nullable — Product type (open enum). Values mirror the Qonversion dashboard labels: `subscription_with_promo` (Subscription With Promo Period), `subscription` (Regular Subscription), `consumable`, `lifetime`.
    - `duration` string, nullable — Subscription duration in ISO 8601 period format (open enum). Only products of type `subscription_with_promo` or `subscription` may have a duration; `consumable` and `lifetime` are always null.
    - `apple_product_id` string, nullable — Apple App Store product identifier.
    - `google_product_id` string, nullable — Google Play product identifier.
    - `google_base_plan_id` string, nullable — Google Play base plan identifier.
    - `stripe_product_id` string, nullable — Stripe product identifier.
    - `created_at` string, date-time, required — Creation timestamp (ISO 8601 UTC).
    - `updated_at` string, date-time, required — Last update timestamp (ISO 8601 UTC).
  - `has_more` boolean, required
  - `next_cursor` string — Present only when has_more is true.

## Other responses

- `400` — Invalid request parameters.
- `401` — Missing or invalid authentication token.
- `403` — Insufficient permissions.

---

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