Modules
5 endpoints
List all modules
Get all available modules with their metadata and enabled status for the current tenant
Responses
200Successfully retrieved modules list
401Authentication required
403Access denied
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.modules.list();89console.log(result);