Pages

16 endpoints

List pages

List all pages for the tenant with pagination

Parameters
limit
integerNumber of results per page (default 20, max 100)
offset
integerNumber of results to skip (default 0)
Responses
200Successfully retrieved pages
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.pages.list({
8 limit: 1,
9 offset: 1,
10});
11
12console.log(result);