curl --request GET \
--url https://api.pandabase.io/v2/storefront/stores/{storeId}/categories{
"ok": true,
"data": {
"items": [
{
"id": "<string>",
"name": "<string>",
"slug": "<string>",
"displayOrder": 123,
"featured": true,
"description": "<string>",
"icon": "<string>",
"parentId": "<string>"
}
],
"pagination": {
"page": 123,
"limit": 123,
"total": 123,
"totalPages": 123
}
}
}Returns a paginated list of categories. Supports filtering by featured status and parent category.
curl --request GET \
--url https://api.pandabase.io/v2/storefront/stores/{storeId}/categories{
"ok": true,
"data": {
"items": [
{
"id": "<string>",
"name": "<string>",
"slug": "<string>",
"displayOrder": 123,
"featured": true,
"description": "<string>",
"icon": "<string>",
"parentId": "<string>"
}
],
"pagination": {
"page": 123,
"limit": 123,
"total": 123,
"totalPages": 123
}
}
}Store ID (shp_ prefix)
Page number
x >= 1Items per page
1 <= x <= 100Filter by featured status
Filter by parent category ID (for subcategories)