Parameters
1 query
Query parameters
· 1searchQuerystringRequiredSearch query to filter products by name or description.
Example
blue shirtReturns up to 20 products matching the search query for autocomplete purposes. Searches by product name and short description. Includes thumbnail image and price.
1 query
searchQuerystringRequiredSearch query to filter products by name or description.
blue shirt1 status code documented
itemsobject[]RequiredProducts matching the autocomplete query.
codestringRequiredProduct code.
namestringRequiredProduct name.
shortDescriptionstringOptionalShort description, truncated to 150 characters.
mainImageUrlstringOptionalMain product image URL.
pricenumberRequiredPrice with VAT.
vatnumberRequiredVAT rate percentage.
{
"items": [
{
"code": "example_code",
"name": "example_name",
"shortDescription": "example_shortDescription",
"mainImageUrl": "example_mainImageUrl",
"price": 0,
"vat": 0
}
]
}GET /bff/product/search-product-list-autocomplete
curl -X GET "https://api.bizkithub.com/bff/product/search-product-list-autocomplete?searchQuery=blue%20shirt" \
-H "Content-Type: application/json" \
-H "Authorization: Bearer YOUR_API_KEY"All BizKitHub public API endpoints require authentication via API key.