Category
The Category object
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.
{
"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"
}/v1/categoriesList categories
Returns product categories for a store key, network categories for a network key, or product categories for a selected network member store. Category and product expansion remains scoped to the authenticated storefront owner.
storestringoptionalNetwork member store public ID whose product categories should be returned.
parentstringoptionalParent category public ID used to return its direct children.
parents_onlybooleanoptionalReturn only top-level categories.
with_productsbooleanoptionalInclude published, available products for each returned store product category.
with_storesbooleanoptionalFor network categories, include member stores assigned to each category.
/v1/categoriescurl https://api.fleetbase.io/v1/categories?store=&parent=&parents_only=&with_products=&with_stores= \
-H "Authorization: Bearer flb_live_…"