GET
/
transactions
/
{hash}
/
useroperations
Get User Operations for a Transaction
curl --request GET \
  --url https://indexer.testnet.incentiv.net/api/transactions/{hash}/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

hash
string
required

Hash of the transaction to retrieve user operations for.

Response

200
application/json

List of user operations associated with the transaction.

The response is of type object[].