GET
/
account
/
{address}
/
useroperations
Get Account User Operations
curl --request GET \
  --url https://indexer.testnet.incentiv.net/api/account/{address}/useroperations
[
  {
    "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 operations for.

Query Parameters

offset
integer

Offset for pagination.

limit
integer

Maximum number of user operations to return.

Response

200
application/json

List of user operations submitted by the account.

The response is of type object[].