# Blockscout Multichain NFT Search

> Blockscout Multichain NFT 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 NFTs by name, symbol, or keyword across multiple blockchain networks within a specified cluster

## Facts

- Endpoint: GET https://api.blockscout.com/services/multichain/api/v1/clusters/%7Bcluster_id%7D/search/nfts
- 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-nft-search-cb23d98c
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_cLFsl6glh72eXORn8_XNo

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-nft-search-cb23d98c
```

Example prompt: Search for NFT collections matching 'Bored Ape' across all chains in the default cluster on Blockscout's multichain explorer and show me the top 10 results with their holder counts and market caps.

## When to prefer this

Use this endpoint when you need to search NFT collections across multiple blockchain networks simultaneously within a Blockscout cluster, especially when you need cross-chain coverage with metadata like holder counts, market cap, and supply. Prefer this over single-chain block explorers when the target chain is unknown or when comparing the same NFT project across networks.

## Known failure modes

- Invalid or missing cluster_id returns a 404 or error response
- Unsupported chain_id values may return empty results or validation errors
- Empty query string may return unfiltered or empty results
- Rate limiting or payment failure (x402) if the $0.012 USDC fee is not provided
- Malformed page_token causes pagination errors
- Very broad queries may return large result sets requiring multiple paginated calls

## 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 paginated list of NFT token records, each including the token name, symbol, type, decimals, icon URL, address hash, total supply, exchange rate, holder count, circulating market cap, and chain-specific metadata. Also includes next_page_params for cursor-based pagination.

## 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": [
   {
    "name": "string",
    "type": "string",
    "symbol": "string",
    "decimals": "string",
    "icon_url": "string",
    "chain_infos": {},
    "address_hash": "string",
    "total_supply": "string",
    "exchange_rate": "string",
    "holders_count": "string",
    "circulating_market_cap": "string"
   }
  ],
  "next_page_params": {
   "page_size": 0,
   "page_token": "string"
  }
 }
}
```

## More

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