GET /2025-07/cloud/product/{product_id}
Method: GET
URL:
Sandbox URL:
Description: Get product details.
Parameters required to be sent
| Parameter | Description | Type |
|---|---|---|
product_id | Product ID. | Long, Required |
Submit a "GET" request to above endpoint
Result object contains:
| Parameter | Description | Type |
|---|---|---|
id | Product ID. | Long |
title | Product title. The maximum length is 256. | String |
body_html | Product description. The maximum length is 65535. | String |
vendor | Product vendor. The maximum length is 64. | String |
created_time | Created time. | Date Time |
updated_time | Updated time. | Date Time |
tags | Product tags. The maximum length is 2046. | Array |
currency | Currency. The maximum length is 3. | String |
source | Product source. The maximum length is 32. | String |
options | Variant options. The maximum length is 65535. | Object |
category | Product category. The maximum length is 256. | Object |
variants | Variations or options available for a product or item. | Array |
id | Variants ID. | Long |
title | Variants title. The maximum length is 256. | String |
sku | SKU No. The maximum length is 128. | String |
weight | Product weight. The maximum total digits 12, with 2 decimal places. | Number |
weight_unit | Weight UOM: g, kg, oz, lb. The maximum length is 8. | String |
requires_shipping | Requires shipping, default value is true. | Boolean |
retail_price | Product retail price. The maximum total digits 12, with 2 decimal places. | Number |
compare_at_price | Product compare at price. The maximum total digits 12, with 2 decimal places. | Number |
unit | Unit: pcs, kg. The maximum length is 8. | String |
created_time | Created time. | Date Time |
updated_time | Updated time. | Date Time |
options | Variant options. The maximum length is 65535. | Object |
images | Product images. | Array |
url | URL. The maximum length is 255. | String |
title | Title. 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
}
]
}
}