/api/v1/post/feed
Returns a feed of the most recent posts. Posts are filtered by the requested locale and ordered by their last modification date. The limit parameter controls how many items are returned, and the optional fields parameter lets you request additional properties (for example content). When requested, the content field is returned as a sanitized, single-line teaser truncated to a fixed length suitable for listing views.
getApiV1PostFeedQuery Parameters
localestringCommunication locale code used to filter content.
Supported locales: cs, en, fr, it, pl, de, sk, sv, es, zh, ja, uk, da.
fieldsstringComma-separated list of additional fields to include in the response. Only the listed fields will be attached to each item. Example: content,id.
limitstringMaximum number of items to return. If omitted, a default internal limit is applied.
identityIdstringLogged user identity (from your frontend cookies).
Responses
No description
https://bizkithub.comExample Request
fetch('https://bizkithub.com/api/v1/post/feed?apiKey=YOUR_API_KEY', {
method: 'GET',
headers: {
'Content-Type': 'application/json'
}
})Example Response
{
"items": []
}🔑 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.