v1

latestSwagger 2.0MIT2026-07-17233380637.0 KB
Ecommerce

Get a product's details

get/products/{id}

Path parameters

idstring required

Product ID

Response

Product informations

idstring string required

Product ID for which you requested the details

namestring string required

Name of the product for which you requested the details

createdAtstring required

Creation UTC date-time of the product (YYYY-MM-DDTHH:mm:ss.SSSZ)

modifiedAtstring required

Last modification UTC date-time of the product (YYYY-MM-DDTHH:mm:ss.SSSZ)

urlstring string

URL to the product

imageUrlstring string

Absolute URL to the cover image of the product

skustring string

Product identifier from the shop

pricenumber float

Price of the product

categoriesstring[]

Category ID-s of the product

parentIdstring string

Parent product id of the product

s3Originalstring string

S3 url of original image

s3ThumbAnalyticsstring string required

S3 thumbnail url of original image in 120x120 dimension for analytics section

metaInfoobject

Meta data of product such as description, vendor, producer, stock level, etc.

s3ThumbEditorstring string required

S3 thumbnail url of original image in 600x400 dimension for editor section

isDeletedboolean

product deleted from the shop's database

Example response

{
  "s3ThumbAnalytics": "s3ThumbAnalytics",
  "modifiedAt": "2017-05-12T12:30:00.000+0000",
  "url": "http://mydomain.com/product/electronics/product1",
  "parentId": "parentId",
  "createdAt": "2017-05-12T12:30:00.000+0000",
  "metaInfo": {
    "description": "Shoes for sports",
    "brand": "addidas"
  },
  "isDeleted": true,
  "price": 0.8008282,
  "imageUrl": "http://mydomain.com/product-absoulte-url/img.jpeg",
  "name": "Iphone 11",
  "s3ThumbEditor": "s3ThumbEditor",
  "id": "P11",
  "categories": [
    "categories",
    "categories"
  ],
  "sku": "sku",
  "s3Original": "s3Original"
}