Pages
16 endpoints
List pages
List all pages for the tenant with pagination
Parameters
limitoffsetResponses
200Successfully retrieved pages
401Authentication required
403Access denied
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.pages.list({8 limit: 1,9 offset: 1,10});1112console.log(result);