GET
/
useroperations
List User Operations
curl --request GET \
  --url https://indexer.testnet.incentiv.net/api/useroperations
{
  "total": 123,
  "items": [
    {
      "hash": "<string>",
      "sender": "<string>",
      "nonce": "<string>",
      "initCode": "<string>",
      "callData": "<string>",
      "callGasLimit": "<string>",
      "verificationGasLimit": "<string>",
      "preVerificationGas": "<string>",
      "maxFeePerGas": "<string>",
      "maxPriorityFeePerGas": "<string>",
      "paymaster": "<string>",
      "paymasterData": "<string>",
      "signature": "<string>",
      "status": "<string>"
    }
  ]
}

Query Parameters

fromTimestamp
integer

UNIX timestamp (seconds) marking the start of the time range to filter user operations.

toTimestamp
integer

UNIX timestamp (seconds) marking the end of the time range to filter user operations.

fromBlockNumber
integer

Start of the block number range.

toBlockNumber
integer

End of the block number range.

sender
string

Sender address to filter user operations.

status
string

Status of the user operation to filter by.

offset
integer

Offset for pagination.

limit
integer

Maximum number of user operations to return.

sort
string

Sorting order for returned user operations. Options: TIMESTAMP_ASC, TIMESTAMP_DESC, NUMBER_ASC, NUMBER_DESC.

Response

200
application/json

A list of user operation entries.

The response is of type object.