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';
2
3const client = new Limbos({
4 apiKey: process.env.LIMBOS_API_KEY,
5});
6
7const result = await client.modules.list();
8
9console.log(result);