Parameters
1 query
Query parameters
· 1codestringRequiredProduct code.
my-productReturns all non-deleted images in the product gallery sorted by active status and position. Includes blob metadata (URL, dimensions) and identifies the main/featured image.
1 query
codestringRequiredProduct code.
my-product1 status code documented
itemsobject[]RequiredGallery images sorted by active status then position.
idstringOptionalBlob token (used as image identifier in other endpoints).
urlstringOptionalExternal URL if the media is not a blob.
blobanyRequiredBlob file metadata (filename, URL, dimensions, size).
titlestringRequiredImage alt text / title.
positionnumberRequiredDisplay order position (1-based).
deletedbooleanRequiredWhether the image is soft-deleted.
activebooleanRequiredWhether the image is active (visible on the public site).
mainImageIdstringOptionalBlob token of the current main/featured image.
itemCountnumberRequiredTotal number of non-deleted images in the gallery.
{
"items": [
{
"id": "example_id",
"url": "example_url",
"title": "example_title",
"position": 0,
"deleted": false,
"active": false
}
],
"mainImageId": "example_mainImageId",
"itemCount": 0
}GET /bff/product/product-gallery-list
curl -X GET "https://api.bizkithub.com/bff/product/product-gallery-list?code=my-product" \
-H "Content-Type: application/json" \
-H "Authorization: Bearer YOUR_API_KEY"All BizKitHub public API endpoints require authentication via API key.