Version: 202607
List product images
GET/openapi/2026-07/products/:product_id/images
Retrieve a list of all product image with pagination.
Request
Path Parameters
product_id stringrequired
The unique identifier for the product
Responses
- 200
OK
- application/json
- Schema
- Example
Schema
- Array [
- ]
codestring
error code
messagestring
error message
data object
images object[]
Array of image object
idstring
The unique identifier for the image
product_idstring
The unique identifier for the product associated with the image
positionint32
The position of the image relative to other images in the product gallery
srcstring
The URL of the image
widthint32
The width of the image in pixels
heightint32
The height of the image in pixels
altstring
Alternative text for the image (used for accessibility or descriptions)
created_atstring
Image creation time
updated_atstring
Image last updated time
{
"code": "string",
"message": "string",
"data": {
"images": [
{
"id": "string",
"product_id": "string",
"position": 0,
"src": "string",
"width": 0,
"height": 0,
"alt": "string",
"created_at": "string",
"updated_at": "string"
}
]
}
}