/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.

get
Tags:post
Operation ID: getApiV1PostFeed
Query Parameters
apiKeystring
required

Your BizKitHub API key (passed as GET parameter)

localestring
required

Communication locale code used to filter content.

Supported locales: cs, en, fr, it, pl, de, sk, sv, es, zh, ja, uk, da.

fieldsstring
optional

Comma-separated list of additional fields to include in the response. Only the listed fields will be attached to each item. Example: content,id.

limitstring
optional

Maximum number of items to return. If omitted, a default internal limit is applied.

identityIdstring
optional

Logged user identity (from your frontend cookies).

Responses
200

No description

Base URL:
https://bizkithub.com

Example Request

fetch('https://bizkithub.com/api/v1/post/feed?apiKey=YOUR_API_KEY', {
  method: 'GET',
  headers: {
    'Content-Type': 'application/json'
  }
})

Example Response

HTTP 200Success 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.

Back to API Documentation
Last updated: January 2, 2026