Assets

4 endpoints

List public assets

List public assets with optional filtering by category and pagination.

Parameters
category
stringAsset category filter
limit
integerMaximum number of results
offset
integerNumber of results to skip
Responses
200Successfully retrieved asset list
400Invalid query parameters
401Authentication required
403Access denied - insufficient permissions
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.assets.list({
8 category: 'example',
9 limit: 1,
10 offset: 1,
11});
12
13console.log(result);