Public
4 endpoints
Get public tenant configuration
Retrieve tenant configuration by hostname without authentication. Returns sanitized config data.
Parameters
hostrequiredResponses
200Successfully retrieved public config
400Invalid hostname parameter
404Tenant config not found for hostname
429Rate limit exceeded
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.public.list({8 host: 'example',9});1011console.log(result);