Get UserOps by wallet address
curl --request GET \
--url https://api.fuse.io/api/v0/graphql/userops/{address}{
"data": {
"userOps": [
{
"id": "<string>",
"transactionHash": "<string>",
"userOpHash": "<string>",
"sender": "<string>",
"entryPoint": "<string>",
"paymaster": "<string>",
"paymasterAndData": "<string>",
"bundler": "<string>",
"nonce": "<string>",
"initCode": "<string>",
"actualGasCost": "<string>",
"actualGasUsed": "<string>",
"callGasLimit": "<string>",
"verificationGasLimit": "<string>",
"preVerificationGas": "<string>",
"maxFeePerGas": "<string>",
"maxPriorityFeePerGas": "<string>",
"baseFeePerGas": "<string>",
"gasPrice": "<string>",
"gasLimit": "<string>",
"signature": "<string>",
"success": true,
"revertReason": "<string>",
"blockTime": "<string>",
"blockNumber": "<string>",
"network": "<string>",
"target": "<string>",
"accountTarget": {
"id": "<string>",
"userOpsCount": "<string>"
},
"callData": "<string>",
"beneficiary": "<string>",
"factory": "<string>",
"erc721Transfers": [
{
"from": "<string>",
"to": "<string>",
"tokenId": "<string>",
"contractAddress": "<string>",
"name": "<string>",
"symbol": "<string>"
}
],
"erc20Transfers": [
{
"from": "<string>",
"to": "<string>",
"value": "<string>",
"contractAddress": "<string>",
"name": "<string>",
"symbol": "<string>",
"decimals": "<string>"
}
]
}
]
}
}User Operations
Get UserOps by wallet address
Fetches user operations for a specific wallet address, including transactions, user operation hashes, and related activity data.
GET
/
userops
/
{address}
Get UserOps by wallet address
curl --request GET \
--url https://api.fuse.io/api/v0/graphql/userops/{address}{
"data": {
"userOps": [
{
"id": "<string>",
"transactionHash": "<string>",
"userOpHash": "<string>",
"sender": "<string>",
"entryPoint": "<string>",
"paymaster": "<string>",
"paymasterAndData": "<string>",
"bundler": "<string>",
"nonce": "<string>",
"initCode": "<string>",
"actualGasCost": "<string>",
"actualGasUsed": "<string>",
"callGasLimit": "<string>",
"verificationGasLimit": "<string>",
"preVerificationGas": "<string>",
"maxFeePerGas": "<string>",
"maxPriorityFeePerGas": "<string>",
"baseFeePerGas": "<string>",
"gasPrice": "<string>",
"gasLimit": "<string>",
"signature": "<string>",
"success": true,
"revertReason": "<string>",
"blockTime": "<string>",
"blockNumber": "<string>",
"network": "<string>",
"target": "<string>",
"accountTarget": {
"id": "<string>",
"userOpsCount": "<string>"
},
"callData": "<string>",
"beneficiary": "<string>",
"factory": "<string>",
"erc721Transfers": [
{
"from": "<string>",
"to": "<string>",
"tokenId": "<string>",
"contractAddress": "<string>",
"name": "<string>",
"symbol": "<string>"
}
],
"erc20Transfers": [
{
"from": "<string>",
"to": "<string>",
"value": "<string>",
"contractAddress": "<string>",
"name": "<string>",
"symbol": "<string>",
"decimals": "<string>"
}
]
}
]
}
}⌘I