Skip to main content
GET
/
useroperations
List User Operations
curl --request GET \
  --url https://indexer.mainnet.incentiv.io/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<int64>

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

toTimestamp
integer<int64>

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

A list of user operation entries.

total
integer
items
object[]