/api/v1/post/search
API endpoint documentation
get
Tags:post
Operation ID:
getApiV1PostSearchQuery Parameters
querystringFull-text search query entered by the client. Can contain words, phrases or year numbers, e.g. "2025".
localestringCommunication locale code used to filter content.
Supported locales: cs, en, fr, it, pl, de, sk, sv, es, zh, ja, uk, da.
identityIdstringLogged user identity (from your frontend cookies).
Responses
200
No description
Base URL:
https://bizkithub.comExample Request
fetch('https://bizkithub.com/api/v1/post/search?apiKey=YOUR_API_KEY', {
method: 'GET',
headers: {
'Content-Type': 'application/json'
}
})Example Response
HTTP 200Success Response
{
"query": "2025",
"title": "2025",
"countResults": 1,
"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