# Blockscout Multichain Transaction Search

> Blockscout Multichain Transaction Search is a paid API for AI agents from api.blockscout.com, paid per call via x402, $0.012/call, status unknown (last checked 2026-09-11).

Search for transactions by hash or query across multiple blockchain networks within a Blockscout cluster

## Facts

- Endpoint: GET https://api.blockscout.com/services/multichain/api/v1/clusters/%7Bcluster_id%7D/search/transactions
- Price: $0.012/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-11
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/blockscout-multichain-transaction-search-ecdfb5c1
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_tWMZUvZOM_AqwzXgj7nGc

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-multichain-transaction-search-ecdfb5c1
```

Example prompt: Can you search Blockscout's multichain explorer for the transaction hash 0xabc123... across Ethereum and Polygon in cluster mainnet-evm — show me the first 10 results?

## When to prefer this

Use this endpoint when you need to search for transactions specifically across multiple blockchain networks simultaneously within a Blockscout cluster. Prefer this over single-chain explorers when the chain of a transaction is unknown, or when you need cross-chain transaction visibility in one call. Best suited for multichain auditing, cross-chain dapp monitoring, or when a user provides a tx hash without specifying the network.

## Known failure modes

- Invalid or non-existent cluster_id returns an error or empty results
- Malformed query string returns no matches
- Invalid chain_id filter causes empty results or bad request
- Missing required cluster_id path parameter results in 404 or routing error
- Expired or invalid page_token causes pagination failure
- Rate limiting or payment failure returns 402 or 429 status

## 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

Returns a paginated list of transaction items, each containing a transaction hash, the chain ID it belongs to, and the hash type. Also includes next_page_params with a page_token and page_size for fetching subsequent pages.

## 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": {
      "cluster_id": {
       "type": "string"
      }
     }
    },
    "queryParams": {
     "type": "object",
     "properties": {
      "q": {
       "type": "string"
      },
      "chain_id": {
       "type": "array"
      },
      "page_size": {
       "type": "integer"
      },
      "page_token": {
       "type": "string"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "items": [
   {
    "hash": "string",
    "chain_id": "string",
    "hash_type": "string"
   }
  ],
  "next_page_params": {
   "page_size": 0,
   "page_token": "string"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/blockscout-multichain-transaction-search-ecdfb5c1/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)
