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

hashOrNumber
string
required

The block hash or block number to retrieve user operations for.

Response

200
application/json

List of user operations in the block.

The response is of type object[].