Skip to main content
GET
List transaction bundles
Results are ordered by creation date, newest first. Use created_from/created_to (RFC 3339) to fetch a date range server-side instead of paging until you pass your target date. For donation-level filtering, prefer GET /v1/donations.

Authorizations

Authorization
string
header
required

OAuth2 access token. Pass the token in the Authorization header as Bearer <token>. The token is looked up in Redis to resolve the caller identity.

Query Parameters

limit
integer<int64>
default:20

Maximum number of items to return.

Required range: 1 <= x <= 1000
offset
integer<int64>
default:0

Number of items to skip.

Required range: x >= 0
created_from
string<date-time>

Only bundles created on or after this date (RFC 3339).

created_to
string<date-time>

Only bundles created on or before this date (RFC 3339).

Response

OK

data
object[] | null
required
status
string
required

Operation result.

Example:

"success"

total
integer<int64>
required

Total number of matching items.

Last modified on July 7, 2026