Skip to content

GET /2025-07/cloud/product/{product_id}

Method: GET

URL:

Sandbox URL:

Description: Get product details.

Parameters required to be sent

ParameterDescriptionType
product_idProduct ID.Long, Required

Submit a "GET" request to above endpoint

Result object contains:

ParameterDescriptionType
idProduct ID.Long
titleProduct title. The maximum length is 256.String
body_htmlProduct description. The maximum length is 65535.String
vendorProduct vendor. The maximum length is 64.String
created_timeCreated time.Date Time
updated_timeUpdated time.Date Time
tagsProduct tags. The maximum length is 2046.Array
currencyCurrency. The maximum length is 3.String
sourceProduct source. The maximum length is 32.String
optionsVariant options. The maximum length is 65535.Object
categoryProduct category. The maximum length is 256.Object
variantsVariations or options available for a product or item.Array
  idVariants ID.Long
  titleVariants title. The maximum length is 256.String
  skuSKU No. The maximum length is 128.String
  weightProduct weight. The maximum total digits 12, with 2 decimal places.Number
  weight_unitWeight UOM:
g, kg, oz, lb.
The maximum length is 8.
String
  requires_shippingRequires shipping, default value is true.Boolean
  retail_priceProduct retail price. The maximum total digits 12, with 2 decimal places.Number
  compare_at_priceProduct compare at price. The maximum total digits 12, with 2 decimal places.Number
  unitUnit:
pcs, kg.
The maximum length is 8.
String
  created_timeCreated time.Date Time
  updated_timeUpdated time.Date Time
  optionsVariant options. The maximum length is 65535.Object
imagesProduct images.Array
  urlURL. The maximum length is 255.String
  titleTitle. The maximum length is 127.String

Response

json
{
  "code": 200,
  "message": "Successful!",
  "data": {
    "id": 465947720523702272,
    "title": "lemon-openapi-001",
    "body_html": "i like iphone too",
    "vendor": "Lemon",
    "created_time": "2025-07-09T10:29:53Z",
    "updated_time": "2025-07-09T11:00:30Z",
    "tags": [
      "apple Lemon",
      "iphone",
      "iphone 6-lemon"
    ],
    "currency": "USD",
    "source": "ZhenHub",
    "category": "phone",
    "options": {
      "color": [
        "black",
        "gold",
        "silver",
        "red"
      ],
      "memory": [
        "64G",
        "128G",
        "256G"
      ]
    },
    "variants": [
      {
        "id": 465947720553062400,
        "title": "iphone-Lemon-openapi001 256G",
        "sku": "iphone-Lemon-openapi001",
        "weight": 168.0,
        "weight_unit": "g",
        "requires_shipping": true,
        "compare_at_price": 0.0,
        "retail_price": 1680.0,
        "created_time": "2025-07-09T10:29:53Z",
        "updated_time": "2025-07-09T11:00:29.619973Z",
        "options": null,
        "unit": "pcs"
      }
    ],
    "images": [
      {
        "url": "https://s3.ap-east-1.amazonaws.com/public.test/products/file_20250709_190020_984.jpeg",
        "title": null
      },
      {
        "url": "https://s3.ap-east-1.amazonaws.com/public.test/products/file_20250709_190026_662.jpeg",
        "title": null
      }
    ]
  }
}