Catalog
13 endpoints
List catalog items
List all catalog items with optional filtering by type
Parameters
pagepage_sizetypeactive_onlysearchResponses
200Catalog items list
401Unauthorized
500Internal server error
Code Examples
example.ts
typescript
1import { Limbos } from '@limbos/sdk';23const client = new Limbos({4 apiKey: process.env.LIMBOS_API_KEY,5});67const result = await client.catalog.list({8 page: 1,9 page_size: 1,10 type: 'example',11 active_only: true,12 search: 'example',13});1415console.log(result);