/bff/doc/list
Returns all published documentation pages grouped by category for help-center navigation. Categories are sorted by position, articles within each category by position then publish date. Articles without a category are returned in a separate "uncategorized" array.
DocumentationgetBffDocList
Parameters
1 query
Query · 1
localestringRequiredCommunication locale code used to filter content.
Supported locales: cs, en, fr, it, pl, de, sk, sv, es, zh, ja, uk, da.
Length: 2–2
Request
GET /bff/doc/list
curl -X GET "https://api.bizkithub.com/bff/doc/list?locale=cs" \
-H "Content-Type: application/json" \
-H "Authorization: Bearer YOUR_API_KEY"Response
JSON payload
{
"categories": [
{
"id": "example_id",
"name": "example_name",
"articles": [
{
"slug": "example_slug",
"title": "example_title",
"perex": "example_perex"
}
]
}
],
"uncategorized": [
{
"slug": "example_slug",
"title": "example_title",
"perex": "example_perex"
}
]
}All response codes
1 status code documented
Need an API key?
All BizKitHub API endpoints require authentication via API key.