Parameters
No parameters required
This endpoint takes no path, query, header or body parameters.
Returns the org-wide reference image library plus the configured mood prompt and aspect ratio. Used by /settings/posts to render the AI-image management panel and by the per-article gallery view to decide whether the "Generate image" button should be enabled.
No parameters required
This endpoint takes no path, query, header or body parameters.
1 status code documented
itemsobject[]RequiredidstringRequiredReference image record id.
isActivebooleanRequiredWhether this image is fed to the generator.
insertedDatestringRequiredWhen the image was uploaded.
blobTokenstringRequiredUnderlying blob token.
downloadUrlstringRequiredPublic URL to display the thumbnail.
filenamestring | nullRequiredsizenumberRequiredcontentTypestringRequiredmoodPromptstringRequiredMood prompt injected into every generation request. Empty when not configured.
aspectRatiostringRequiredAspect ratio the generator uses for post thumbnails. One of "3:2" (default), "16:9", "4:3", "1:1", "9:16".
hasActivebooleanRequiredTrue if at least one reference image is active.
{
"items": [
{
"id": "example_id",
"isActive": false,
"insertedDate": "example_insertedDate",
"blobToken": "example_blobToken",
"downloadUrl": "example_downloadUrl",
"size": 0,
"contentType": "example_contentType"
}
],
"moodPrompt": "example_moodPrompt",
"aspectRatio": "example_aspectRatio",
"hasActive": false
}GET /bff/post/reference-image-list
curl -X GET "https://api.bizkithub.com/bff/post/reference-image-list" \
-H "Content-Type: application/json" \
-H "Authorization: Bearer YOUR_API_KEY"All BizKitHub public API endpoints require authentication via API key.