GET
/
account
/
{address}
/
userop-activity
Get Account User Operation Activity
curl --request GET \
  --url https://indexer.testnet.incentiv.io/api/account/{address}/userop-activity
[
  {
    "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>"
  }
]

Path Parameters

address
string
required

Account address to retrieve user operation activity for.

Query Parameters

direction
enum<string>
default:all

Filter by direction of the user operation: 'incoming', 'outgoing', or 'all' (default).

Available options:
incoming,
outgoing,
all
offset
integer

Offset for pagination.

limit
integer

Maximum number of user operations to return.

Response

List of user operations initiated by or received by the account.

hash
string
required

Unique hash identifying the user operation.

sender
string
required

Address of the sender initiating the user operation.

nonce
string
required

Nonce value to ensure uniqueness of the user operation.

initCode
string
required

Initialization code for the user operation.

callData
string
required

Call data payload of the user operation.

callGasLimit
string
required

Gas limit for the call part of the user operation.

verificationGasLimit
string
required

Gas limit for the verification part of the user operation.

preVerificationGas
string
required

Gas paid before verification.

maxFeePerGas
string
required

Maximum fee per gas the sender is willing to pay.

maxPriorityFeePerGas
string
required

Maximum priority fee per gas.

paymaster
string
required

Address of the paymaster if any.

paymasterData
string
required

Additional data for the paymaster.

signature
string
required

Signature of the user operation.

status
string
required

Status of the user operation execution.