/api/v1/post/post
Returns the full detail of a post identified by slug and locale, including content, routes, breadcrumbs, related posts, and tags. Returns an error object (state: error) if the post does not exist.
postgetApiV1PostPost
Parameters
5 query
Query · 5
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
sortDirectionstringRequest
GET /api/v1/post/post
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" \
-H "Authorization: Bearer YOUR_API_KEY"Response
JSON payload
{
"id": "6IU2SWgP76FO2UXw",
"author": {
"name": "Jan Barášek",
"profileSlug": "71E58E5SjdZN6ut3"
},
"isStar": false,
"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"
}
]
}All response codes
1 status code documented
Need an API key?
All BizKitHub API endpoints require authentication via API key.