SearchTransactionsResponse

Type SearchTransactionsResponse

Properties

transactions
required
Array<SearchTransactionsRow>     List of SearchTransactionsRow objects.
cursor
Optional
String     Cursor to pass back to continue your query. Only present when hitting the limit value. Will be null when reaching the end of the block span searched.
forked_head_warning
Optional
Boolean     Signals that results previously fetched are at risk of being wrong because of network forks conditions. Will only show when with_reversible was set to true. See pagination for more details.

Example Payload

{
  "cursor": "dno3ojdbEpHZV73TfVnvbfWzIpU9BlpvXwo=",
  "transactions": [
    {
      "lifecycle": {
        "transaction_status": "executed",
        "id": "7c5d768973152e0465a2a3eba88689d012ffd4b16cfdd41291e6d7830530d1cb",
        ...
      },
      "action_idx": [
        0
      ]
    }
  ]
}