# Blockscout Account Abstraction Operation Summary

> Blockscout Account Abstraction Operation Summary is a paid API for AI agents from api.blockscout.com, paid per call via x402, $0.002/call, status unknown (last checked 2026-09-10).

Fetches a human-readable summary of a specific ERC-4337 account abstraction user operation by its hash on a given blockchain network

## Facts

- Endpoint: GET https://api.blockscout.com/%7Bchain_id%7D/api/v2/proxy/account-abstraction/operations/%7Boperation_hash_param%7D/summary
- Price: $0.002/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-10
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/blockscout-account-abstraction-operation-summary-1c480530
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_UTn3H-g9zeX3I6jInquqr

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability blockscout-account-abstraction-operation-summary-1c480530
```

Example prompt: Can you pull up a summary of the account abstraction user operation with hash 0xabc123...def on the Ethereum mainnet chain — I want to understand what it did?

## When to prefer this

Choose this endpoint when you need a structured, human-readable summary of a specific ERC-4337 account abstraction user operation by its hash on a particular chain. It is ideal for debugging smart wallet transactions, auditing paymaster activity, or explaining gasless operations to users. Prefer this over general transaction lookup endpoints when the operation was submitted via a bundler and follows the ERC-4337 standard rather than a standard EOA transaction.

## Known failure modes

- Invalid or malformed operation hash returns an error or empty response
- Unsupported chain_id results in a 404 or chain-not-found error
- Operation hash not yet indexed returns empty or not-found response
- Network timeout if the Blockscout node for the given chain is slow to respond
- Incorrect chain_id for the operation yields no results even if hash is valid

## How this service works

Explore crypto activities with Blockscout's multichain search. Find transactions, addresses, tokens, and dapps across top blockchain networks — your go-to explorer for cross-chain blockchain data

## Output

A JSON object containing a human-readable summary of the specified ERC-4337 user operation, including details such as the operation status, sender smart account address, executed calls, paymaster info, and other relevant account abstraction metadata for the given chain.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET",
      "HEAD",
      "DELETE"
     ],
     "type": "string"
    },
    "pathParams": {
     "type": "object",
     "properties": {
      "chain_id": {
       "type": "string"
      },
      "operation_hash_param": {
       "type": "string"
      }
     }
    },
    "queryParams": {
     "type": "object",
     "properties": {
      "just_request_body": {
       "type": "boolean"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {}
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/blockscout-account-abstraction-operation-summary-1c480530/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.blockscout.com](https://www.zero.xyz/host/api.blockscout.com/llms.txt)
