get
/api/v1/post/post
API endpoint documentation
Endpoint Info
Base URLapi.bizkithub.com
AuthBearer Token
Methods1
Authentication Required
This endpoint requires a valid API key passed as a query parameter or Bearer token.
Get your API keyParameters
5 query parameters
apiKeystringrequiredYour BizKitHub API key (passed as GET parameter).
Key format: A 32-character string matching: ^(PROD|DEV_|ROOT)[A-Za-z0-9]{28}$
Prefixes: PROD (production key), DEV_ (individual developer), ROOT (system key with no limits). Learn more
slugstringrequiredlocalestringrequiredCommunication locale code used to filter content.
Supported locales: cs, en, fr, it, pl, de, sk, sv, es, zh, ja, uk, da.
Length: 2 - 2
identityIdstringLogged user identity (from your frontend cookies). Learn more
sortDirectionstringExample Request
JavaScript fetch
const response = await fetch("https://api.bizkithub.com/api/v1/post/post?apiKey=PRODPGrFxpGEtrOZfuWhnoJohUYBXuOE&slug=about&locale=cs&identityId=Z9CPkS2o3UV163VQn5OUv0T8BQi8Fvdg&sortDirection=asc", {
method: "GET",
headers: {
"Content-Type": "application/json"
}
});
const data = await response.json();
console.log(data);get
Example Response
200Success
{
"id": "6IU2SWgP76FO2UXw",
"author": {
"name": "Jan Barášek",
"profileSlug": "71E58E5SjdZN6ut3"
},
"mainImageUrl": "https://storage.xhp.cz/...",
"title": "KYBER CENA ROKU 2025: největší večer české kyberbezpečnosti letošního roku.",
"content": "<p>Žijeme ve světě, kde je normální řídit...</p>",
"route": {
"slug": "kyber-cena-roku-2025-nejvetsi-vecer-ceske-kyberbezpecnosti-letos",
"locale": "cs",
"canonical": false
},
"routes": [
{
"slug": "kyber-cena-roku-2025-nejvetsi-vecer-ceske-kyberbezpecnosti-letos",
"locale": "cs"
}
],
"anchorList": {},
"perex": "example_perex",
"metaDescription": "example_metaDescription",
"mainCategory": {
"id": 0,
"name": "example_name",
"slug": "example_slug"
},
"breadcrumb": [
{
"name": "example_name",
"slug": "example_slug",
"children": []
}
],
"related": [
{
"title": "example_title",
"slug": "example_slug"
}
],
"tagList": [
{
"slug": "bezpecnost",
"name": "Bezpečnost",
"color": "#3B82F6"
}
]
}cURL
Command line example
curl -X GET "https://api.bizkithub.com/api/v1/post/post?apiKey=PRODPGrFxpGEtrOZfuWhnoJohUYBXuOE&slug=about&locale=cs&identityId=Z9CPkS2o3UV163VQn5OUv0T8BQi8Fvdg&sortDirection=asc" \
-H "Content-Type: application/json"Need an API key?
All BizKitHub API endpoints require authentication via API key.