Subscription
6 endpoints
Get subscription info
Get the current tenant's subscription tier, limits, usage, and addons
Responses
200Successfully retrieved subscription
401Authentication required
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.subscription.list();89console.log(result);