---
title: "Return all your products"
method: GET
path: "/products"
tags: ["Ecommerce"]
---

# Return all your products

`GET /products`

## Query parameters

- `limit` integer
- `offset` integer
- `sort` 'asc' | 'desc'
- `ids` string[]
- `name` string
- `price[lte]` number
- `price[gte]` number
- `price[lt]` number
- `price[gt]` number
- `price[eq]` number
- `price[ne]` number
- `categories` string[]
- `modifiedSince` string
- `createdSince` string

## Response `200`

All products listed

- GetProducts
  - `products` GetProductDetails[], required
    - `id` string, string, required — Product ID for which you requested the details
    - `name` string, string, required — Name of the product for which you requested the details
    - `createdAt` string, required — Creation UTC date-time of the product (YYYY-MM-DDTHH:mm:ss.SSSZ)
    - `modifiedAt` string, required — Last modification UTC date-time of the product (YYYY-MM-DDTHH:mm:ss.SSSZ)
    - `url` string, string — URL to the product
    - `imageUrl` string, string — Absolute URL to the cover image of the product
    - `sku` string, string — Product identifier from the shop
    - `price` number, float — Price of the product
    - `categories` string[] — Category ID-s of the product
    - `parentId` string, string — Parent product id of the product
    - `s3Original` string, string — S3 url of original image
    - `s3ThumbAnalytics` string, string, required — S3 thumbnail url of original image in 120x120 dimension for analytics section
    - `metaInfo` object — Meta data of product such as description, vendor, producer, stock level, etc.
    - `s3ThumbEditor` string, string, required — S3 thumbnail url of original image in 600x400 dimension for editor section
    - `isDeleted` boolean — product deleted from the shop's database
  - `count` integer, required — Number of products

## Other responses

- `400` — bad request

---

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