Search
3 endpoints
Perform multi-entity search
Search across customers, files, and addresses within the tenant's scope
Parameters
qrequiredentity_typeslimitoffsetsort_bysort_orderResponses
200OK
400Bad Request
401Unauthorized
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.Search.list({8 q: 'example',9 entity_types: 'example',10 limit: 1,11 offset: 1,12 sort_by: 'example',13 sort_order: 'example',14});1516console.log(result);