Skip to main content
GET
/
v2
/
proxy
/
account-abstraction
/
bundles
List of recent bundles
curl --request GET \
  --url http://localhost/api/v2/proxy/account-abstraction/bundles
{
  "items": [
    {
      "block_number": "<string>",
      "bundle_index": 1,
      "bundler": {
        "ens_domain_name": "<string>",
        "hash": "<string>",
        "implementations": [
          {
            "address_hash": "<string>",
            "name": "<string>"
          }
        ],
        "is_contract": true,
        "is_scam": true,
        "is_verified": true,
        "metadata": {
          "tags": [
            {
              "meta": {},
              "name": "<string>",
              "ordinal": 123,
              "slug": "<string>",
              "tagType": "<string>"
            }
          ]
        },
        "name": "<string>",
        "proxy_type": "eip1167",
        "reputation": "ok",
        "private_tags": [
          {
            "address_hash": "<string>",
            "display_name": "<string>",
            "label": "<string>"
          }
        ],
        "public_tags": [
          {
            "address_hash": "<string>",
            "display_name": "<string>",
            "label": "<string>"
          }
        ],
        "watchlist_names": [
          {
            "display_name": "<string>",
            "label": "<string>"
          }
        ]
      },
      "timestamp": "2023-11-07T05:31:56Z",
      "total_ops": 1,
      "transaction_hash": "<string>"
    }
  ],
  "next_page_params": {
    "page_size": 50,
    "page_token": "3949699,0x275f7110df7d73e530f3381daa9d422dea80f036b514e56427d2d7e492c8a81f,0"
  }
}

Documentation Index

Fetch the complete documentation index at: https://docs.blockscout.com/llms.txt

Use this file to discover all available pages before exploring further.

Query Parameters

apikey
string

API key for rate limiting or for sensitive endpoints

key
string

Secret key for getting access to restricted resources

bundler
string

User operation bundler address hash

Pattern: ^0x([A-Fa-f0-9]{40})$
entry_point
string

User operation entry point address hash

Pattern: ^0x([A-Fa-f0-9]{40})$
page_size
integer

Number of items returned per page

Required range: 1 <= x <= 50
page_token
string

Page token for paging

Response

List of bundles with pagination.

items
Bundle · object[]
required
next_page_params
object
required
Example:
{
"page_size": 50,
"page_token": "3949699,0x275f7110df7d73e530f3381daa9d422dea80f036b514e56427d2d7e492c8a81f,0"
}