---
title: "Get a product's details"
method: GET
path: "/products/{id}"
tags: ["Ecommerce"]
---

# Get a product's details

`GET /products/{id}`

## Path parameters

- `id` string, required

## Response `200`

Product informations

- GetProductDetails
  - `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

## Other responses

- `400` — bad request
- `404` — Product's id not found

---

[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)
