Public

4 endpoints

Get public tenant configuration

Retrieve tenant configuration by hostname without authentication. Returns sanitized config data.

Parameters
hostrequired
stringHostname to lookup (e.g., app.example.com)
Responses
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';
2
3const client = new Limbos({
4 apiKey: process.env.LIMBOS_API_KEY,
5});
6
7const result = await client.public.list({
8 host: 'example',
9});
10
11console.log(result);