Catalog Categories

6 endpoints

List categories

List all categories with optional filtering

Parameters
page
integerPage number
page_size
integerPage size
active_only
booleanOnly return active categories
search
stringSearch by name or description
include_counts
booleanInclude item counts per category
Responses
200Categories list
401Unauthorized
500Internal server error
Code Examples
example.ts
typescript
1import { Limbos } from '@limbos/sdk';
2
3const client = new Limbos({
4 apiKey: process.env.LIMBOS_API_KEY,
5});
6
7const result = await client.catalog-categories.list({
8 page: 1,
9 page_size: 1,
10 active_only: true,
11 search: 'example',
12 include_counts: true,
13});
14
15console.log(result);