Category
Categories organize storefront products for browsing and discovery. Use category endpoints to list product groupings exposed by a store or network.
The Category object
A category groups storefront products and can include nested subcategories.
Attributes
idstringoptionalPublic identifier of the category.
namestringoptionalCategory name.
descriptionstringoptionalCategory description.
icon_urlstringoptionalCategory icon URL.
parentstringoptionalParent category public ID when loaded.
tagsarray of stringsoptionalCategory tags.
translationsobjectoptionalTranslated category values.
productsarray of objectsoptionalProducts in the category when requested.
subcategoriesarray of objectsoptionalNested subcategories when requested.
metaobjectoptionalArbitrary metadata stored with the category.
orderintegeroptionalSort order.
slugstringoptionalURL-friendly category slug.
created_attimestampoptionalTime the category was created.
updated_attimestampoptionalTime the category was last updated.
The Category object
{
"id": "category_2xK9mP1",
"name": "Beverages",
"description": "Drinks and bottled beverages.",
"icon_url": "https://files.example.com/beverages.png",
"parent": null,
"tags": [],
"translations": [],
"meta": {},
"order": 1,
"slug": "beverages",
"created_at": "2026-05-07T09:30:00Z",
"updated_at": "2026-05-07T09:30:00Z"
}GET
/v1/categoriesList categories
Returns product categories available to the current storefront. Use this list to organize product browsing and filtering.
GET
/v1/categoriescurl https://api.fleetbase.io/v1/categories \
-H "Authorization: Bearer flb_live_…"