Parameters
No parameters required
This endpoint takes no path, query, header or body parameters.
Returns a paginated list of branches for the authenticated organisation. Branches are ordered by active status first, then by name ascending. Supports fulltext filter on name, slug, internal code and city.
No parameters required
This endpoint takes no path, query, header or body parameters.
1 status code documented
itemsobject[]RequiredidstringRequiredBranch slug (used as identifier in other endpoints).
slugstringRequiredURL-safe unique branch slug.
namestringRequiredBranch display name.
descriptionstringOptionalShort branch description.
internalCodestringOptionalOrganisation-internal branch code.
activebooleanRequiredWhether the branch is active and visible.
urlstringOptionalBranch public URL.
latitudenumberOptionalBranch GPS latitude.
longitudenumberOptionalBranch GPS longitude.
mainPhotoUrlstringOptionalURL of the main photo.
addressSummarystringOptionalShort rendered address (street, ZIP, city).
openingHoursRegularobject[]RequireddayOfWeeknumberRequired0 = Monday … 6 = Sunday.
definitionstringRequiredTime-range definition, e.g. "08:00-17:00".
activebooleanRequiredopeningHoursExceptionTodayobjectOptionalisOpenbooleanRequiredreasonstringOptionalbranchType"own" | "franchise" | "partner"RequiredBranch kind. Defaults to "own" for historical rows.
parentBranchSlugstringOptionalSlug of the operational parent branch, if any.
operatingCompanyNamestringOptionalDisplay name of the legal entity operating this branch. Doubles as the franchise brand label.
insertedDateDate | string | string | numberRequiredCreation date.
Creation date.
updatedDateDate | string | string | numberRequiredLast update date.
Last update date.
itemCountnumberRequiredTotal number of branches matching the query.
{
"items": [
{
"id": "example_id",
"slug": "example_slug",
"name": "example_name",
"description": "example_description",
"internalCode": "example_internalCode",
"active": false,
"url": "example_url",
"latitude": 0,
"longitude": 0,
"mainPhotoUrl": "example_mainPhotoUrl",
"addressSummary": "example_addressSummary",
"openingHoursRegular": [
{
"dayOfWeek": 0,
"definition": "example_definition",
"active": false
}
],
"openingHoursExceptionToday": {
"isOpen": false,
"reason": "example_reason"
},
"parentBranchSlug": "example_parentBranchSlug",
"operatingCompanyName": "example_operatingCompanyName"
}
],
"itemCount": 0
}GET /bff/branch/list
curl -X GET "https://api.bizkithub.com/bff/branch/list" \
-H "Content-Type: application/json" \
-H "Authorization: Bearer YOUR_API_KEY"All BizKitHub public API endpoints require authentication via API key.