Sandbox version
For experimental use only. Proceed with caution.
accounts
List balance events for an account
get
/accounts/{address}/events
operationId: account-listEvents

Returns the event stream for a given account (payments, fees, offers, rewards), ordered by ledger close time (newest first). Each event carries its own tx_hash — this is the audit trail.

Unlock protected endpoints

Enter your Bearer token once to enable every protected route in this API reference.

HTTP bearer

Saved for this browser tab only. The credential is never sent until you test an endpoint.

Authorizations
NameLocationDetails
BearerAuthAuthorization header · bearerJWT issued by the Honeycluster auth service for the `indexer` audience. Present as `Authorization: Bearer <token>`.
Path Parameters
NameTypeDefaultDescription
address
required
string
Account whose balance events to list.
Query Parameters
NameTypeDefaultDescription
cursor
string
limit
integer20
assetRef
string
Responses
200
application/json
Successful response
FieldTypeDescription
items
object[]
Page of results.
items[].id
string
UUID — part of the composite PK (id, timestamp).
items[].address
string
Account whose balance changed.
items[].assetRef
string
Asset reference: `XRP` | `<currency>:<issuer>` | MPT issuance_id.
items[].txHash
string
Transaction hash that produced this balance delta.
items[].ledgerIndex
integer
Ledger sequence of the event.
items[].timestamp
integer
Ledger close time, Unix-seconds.
items[].eventType
string
Event kind: `payment_in` | `payment_out` | `fee` | `offer` | `trust_set` | `reward` | `amm` | `escrow` | `check` | `vault` | `mpt` | …
items[].delta
string
Signed balance change, decimal string. Positive = credit, negative = debit.
items[].balanceAfter
object
items[].counterparty
object
items[].source
string
How the event was recorded: `stream` | `backfill` | `reconcile`.
items[].sourceTag
object
items[].txType
object
items[].createdAt
integer
Record creation timestamp, Unix-seconds.
nextCursor
object
Cursor to fetch the next page, or null if this is the last page.
Example
Json
{
  "items": [
    {
      "id": "00000000-0000-0000-0000-000000000000",
      "address": "string",
      "assetRef": "string",
      "txHash": "string",
      "ledgerIndex": 0,
      "timestamp": 1745798400,
      "eventType": "string",
      "delta": "string",
      "balanceAfter": "string",
      "counterparty": "string",
      "source": "string",
      "sourceTag": 0,
      "txType": "string",
      "createdAt": 1745798400
    }
  ],
  "nextCursor": "string"
}
400
application/json
Invalid input data
FieldTypeDescription
message
string
The error message
code
string
The error code
issues
object[]
An array of issues that were responsible for the error
issues[].message
string
Example
Json
{
  "code": "BAD_REQUEST",
  "message": "Invalid input data",
  "issues": []
}
401
application/json
Authorization not provided
FieldTypeDescription
message
string
The error message
code
string
The error code
issues
object[]
An array of issues that were responsible for the error
issues[].message
string
Example
Json
{
  "code": "UNAUTHORIZED",
  "message": "Authorization not provided",
  "issues": []
}
403
application/json
Insufficient access
FieldTypeDescription
message
string
The error message
code
string
The error code
issues
object[]
An array of issues that were responsible for the error
issues[].message
string
Example
Json
{
  "code": "FORBIDDEN",
  "message": "Insufficient access",
  "issues": []
}
404
application/json
Not found
FieldTypeDescription
message
string
The error message
code
string
The error code
issues
object[]
An array of issues that were responsible for the error
issues[].message
string
Example
Json
{
  "code": "NOT_FOUND",
  "message": "Not found",
  "issues": []
}
500
application/json
Internal server error
FieldTypeDescription
message
string
The error message
code
string
The error code
issues
object[]
An array of issues that were responsible for the error
issues[].message
string
Example
Json
{
  "code": "INTERNAL_SERVER_ERROR",
  "message": "Internal server error",
  "issues": []
}