# ChainRay NFT Holders Lookup

> ChainRay NFT Holders Lookup is a paid API for AI agents from chainray.online, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-14).

Returns the list of holders (wallet addresses) for a given NFT contract address on a specified blockchain network

## Facts

- Endpoint: GET https://chainray.online/nft-holders/%7Bcontract%7D
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/chainray-nft-holders-lookup-fb1bf003
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_e4JsLZdz0n-ycsn2FJK4I

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 chainray-nft-holders-lookup-fb1bf003
```

Example prompt: Can you pull the full list of wallet addresses holding the Bored Ape Yacht Club NFT contract 0xBC4CA0EdA7647A8aB7C2061c2E118A18a936f13D on Ethereum?

## When to prefer this

Choose this endpoint when you need on-chain NFT holder data across any of 46 supported blockchains and want pay-per-request pricing via x402 without a subscription. Ideal for agents needing real-time holder snapshots for airdrop targeting, governance analysis, or community analytics.

## Known failure modes

- Invalid or non-existent contract address returns 404 or empty result
- Unsupported chain identifier returns an error
- Contract is not an NFT contract (e.g. ERC-20) may return error or empty
- Payment failure (x402) if USDC balance insufficient
- Rate limiting if called too frequently
- Network timeout for large collections with many holders

## How this service works

The most complete blockchain data and intelligence service for AI agents. 93 endpoints across 46 chains, from gas fees to DeFi analytics, with real-time streams, intent routing, and verifiable proofs. Pay-per-request via x402.

## Output

A list of wallet addresses that currently hold tokens in the specified NFT contract, potentially including holder counts, token IDs per holder, and distribution metrics across the requested blockchain network.

## Example request

```json
{
 "input": {
  "type": "http",
  "method": "GET",
  "queryParams": {
   "chain": "ethereum",
   "contract": "0x1234567890123456789012345678901234567890"
  }
 }
}
```

## 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"
     ],
     "type": "string"
    },
    "pathParams": {
     "type": "object"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "contract"
     ],
     "properties": {
      "chain": {
       "type": "string",
       "description": "Blockchain network"
      },
      "contract": {
       "type": "string",
       "description": "NFT contract address"
      }
     }
    }
   },
   "additionalProperties": false
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/chainray-nft-holders-lookup-fb1bf003/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from chainray.online](https://www.zero.xyz/host/chainray.online/llms.txt)
