Skip to main content
GET
Get participant transaction history
Returns a chronological list of balance-affecting operations for a participant. This includes credits, debits, holds, releases, and forfeits, each with full journal entry details such as amount, asset, timestamp, and source. Results are paginated and ordered by created_at. Filter by from / to on created_at (when the journal entry was recorded), or by event_from / event_to on the originating event’s event_timestamp. Entries without an event fall back to their created_at. Both pairs can be used simultaneously (AND semantics).
For usage patterns and examples, see the Participants guide.

Authorizations

X-API-Key
string
header
required

API key passed in the X-API-Key header.

Path Parameters

id
string<uuid>
required

Participant ID

Query Parameters

limit
integer
default:50

Maximum number of results (default 50, max 200)

Required range: x >= 1
cursor
string

Pagination cursor from previous response

asset_id
string<uuid>

Filter by asset ID

bucket
enum<string>

Filter by balance bucket

Available options:
AVAILABLE,
HELD,
DEFERRED
from
string<date-time>

Start of time window (RFC 3339) — filters on system ingestion time

to
string<date-time>

End of time window (RFC 3339) — filters on system ingestion time

event_from
string<date-time>

Start of event occurrence window (RFC 3339) — filters on event_timestamp

event_to
string<date-time>

End of event occurrence window (RFC 3339) — filters on event_timestamp

Response

Transaction history

data
object[]

Data contains the list of items

pagination
object

Pagination contains cursor information for fetching more results