---
title: "Retrieve All Products"
method: GET
path: "/api/v1/products"
tags: ["Products"]
---

# Retrieve All Products

`GET /api/v1/products`

Get a paginated list of your products (Digital, Physical, and Service products - excludes Subscription products). Returns products ordered by creation date (newest first).

## Query parameters

- `skip` integer
- `take` integer

## Response `200`

A list of Products

- object
  - `data` object[] — Array of product objects
    - `id` string — Unique product identifier
    - `name` string — Product name/title
    - `price` string — Product price in IQD
    - `url` string — Public product page URL
    - `status` string — Product status (e.g., Active, Inactive)
    - `image` string — Primary product image URL
    - `tags` string — Product tag/category label
    - `description` string — Product description/content
    - `createdAt` string — Product creation timestamp
    - `updatedAt` string — Last update timestamp
    - `productType` string — Type of product (Digital, Physical, Service)
    - `downloadable` string — Downloadable file URL for digital products
    - `discountType` string — Type of discount applied (e.g., percentage, fixed)
    - `discountExpiry` string — When the discount expires
    - `discountValue` string — Discount value
    - `inventories` object[] — Product variants and inventory options
    - `qt` number — Total quantity in stock
    - `unlimited` boolean — Whether product has unlimited stock
    - `notifyOn` number — Stock level to trigger low inventory notification
  - `message` string — Response message

---

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