MostDocumentation Index
Fetch the complete documentation index at: https://docs.royaltyport.com/llms.txt
Use this file to discover all available pages before exploring further.
list() methods return paginated results. The SDK uses a page-based pagination model.
Pagination Options
Passpage and perPage to control pagination:
| Option | Type | Default | Description |
|---|---|---|---|
page | number | 1 | Page number (1-indexed) |
perPage | number | 20 | Items per page (max: 100) |
Paginated Result
Paginated responses include the items and metadata for navigating pages:| Field | Type | Description |
|---|---|---|
items | array | The items on the current page |
total_count | number | Total number of items across all pages |
page | number | Current page number |
per_page | number | Items per page |
Iterating All Pages
To fetch all items across pages:The
projects.list() method returns an array directly (not paginated), since projects are typically few.