/api/v1/product/feed
Load full list of products from organisation database. By default, we only return basic properties for all products. If you want to return entire products, you need to specify additional properties.
Default properties (contains in all returned products): id
, name
, slug
, shortDescription
, mainImageUrl
, mainCategory
, price
, priceWithoutVat
, vat
, position
, active
, soldOut
, warehouseAllQuantity
, warehouseLimit
, customFields
, event
.
getApiV1ProductFeed
Query Parameters
query
stringSearch query
orderBy
stringOrder by indexed internal field.
Supported values: position
, eventDate
.
category
stringFilter products from category by slug.
page
stringNo description available
limit
stringNo description available
properties
stringAdd extra on demand properties separated by semicolon.
Supported values:
Property | Description |
---|---|
orderStatistics |
Extra statistics data like totalQuantitySold and count of orders in states. |
galleryItemsCount |
Count of public images in product detail. |
Responses
No description
https://bizkithub.com
Example Request
fetch('https://bizkithub.com/api/v1/product/feed?apiKey=YOUR_API_KEY', {
method: 'GET',
headers: {
'Content-Type': 'application/json'
}
})
Example Response
{
"success": true,
"data": {
"message": "Example response"
}
}
🔑 API Key Required
All BizKitHub API endpoints require authentication using an API key. The API key must be passed as a GET parameter in the URL for all requests.