List Assets
Returns a page of assets in the focused project. Each item carries
its attached labels inline under labels[] so callers can filter
to unlabeled assets in a single round-trip.
Pagination is cursor-based: pass the previous response’s last_id as
after_id to fetch the next page. has_more: false means the end.
Authorizations
Personal Access Token, sent verbatim as pat_<32 chars>. PATs are
minted from the Chief settings UI.
Headers
Project identifier scoping the request. Required on every
project-scoped public endpoint. Missing or malformed values respond
with HTTP 400 and code publicapi.tenancy.project.missing.
^project_[a-z0-9]{20}$Query Parameters
Plain resource id from the previous response's last_id. Returns
rows strictly past that id in the resource's natural sort order.
Omit on the first request. Mutually exclusive with before_id.
Plain resource id to paginate backward from. Mutually exclusive with
after_id.
Maximum number of items to return in this page.
1 <= x <= 100Response
Paginated list of assets with attached labels inline.
Cursor-paginated asset list. last_id is the next request's
after_id when has_more is true.