Subscription

1 endpoint

Get subscription info

Get the current tenant's subscription tier and usage limits

Responses
200Successfully retrieved subscription
401Authentication required
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.subscription.list();
8
9console.log(result);