Returns a paginated list of UTXO records across all Merkle trees, ordered by absolute index ascending.
next_cursor from each response as the start parameter for the next request. Repeat until the response contains fewer records than limit.
X-Response-Layout: columnar for columnar layout (UtxoColumnarResponse). Omit for row-oriented layout (UtxoResponse).Set to "columnar" for UtxoColumnarResponse (parallel arrays).
Omit for the default row-oriented UtxoResponse.
columnar Inclusive lower bound of the absolute index range to fetch.
Defaults to 0.
x >= 0Inclusive upper bound of the absolute index range.
When omitted, scans from start to end of dataset, bounded by limit.
Maximum records per page. Default: 1000. Maximum: 5000.
Passing 0 uses the default.
0 <= x <= 5000UTXO records for the requested absolute index range.
Protobuf UtxoResponse message -- row-oriented paginated UTXO response.
Returned by GET /v1/utxos and GET /v1/trees/{tree_index}/utxos when
X-Response-Layout is absent or set to any value other than "columnar".
Each UTXO is encoded as a self-contained UtxoDataItem sub-message.
Use next_cursor as the start (or cursor) parameter of the next
request to retrieve the following page.
Up to limit UTXO records in ascending absolute_index order.
true if additional records exist beyond this page.
true
Total number of matching records in the requested range across all pages.
5000
Inclusive lower bound of the absolute index range that was queried.
0
Absolute index to pass as start (or cursor) for the next page.
Absent when has_more is false.
1001
Inclusive upper bound of the absolute index range that was queried.
Absent when no explicit end (or tree boundary) was provided.
4999