Get TXOs For Account

Get TXOs for a given account with offset and limit parameters

Parameters

ParameterPurposeRequirements

account_id

The account on which to perform this action.

Account must exist in the wallet.

offset

The pagination offset. Results start at the offset index. Optional, defaults to 0.

limit

Limit for the number of results. Optional, defaults to 100

status

Optional txo status filer. Available status: "txo_status_unspent", "txo_status_spent", "txo_status_orphaned", "txo_status_pending", "txo_status_secreted",

Example

{
  "method": "get_txos_for_account",
  "params": {
    "account_id": "b59b3d0efd6840ace19cdc258f035cc87e6a63b6c24498763c478c417c1f44ca",
    "offset": "2",
    "limit": "8"
  },
  "jsonrpc": "2.0",
  "id": 1
}

Last updated