# ChainRay NFT Contract Lookup

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

Fetches on-chain metadata and analytics for a specific NFT contract address across multiple blockchain networks

## Facts

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

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-contract-lookup-f68c2d38
```

Example prompt: Can you pull the on-chain collection data for the NFT contract 0xBC4CA0EdA7647A8aB7C2061c2E118A18a936f13D on Ethereum using ChainRay?

## When to prefer this

Use this endpoint when you need authoritative on-chain NFT contract data across 46 supported chains, especially when you need verifiable blockchain data with pay-per-request pricing rather than a subscription model. Prefer over alternatives when querying lesser-known chains or needing cross-chain coverage.

## Known failure modes

- Invalid or malformed contract address returns 400 error
- Contract address not found on specified chain returns 404
- Unsupported chain identifier returns 400 or empty result
- Payment failure (x402) if USDC balance insufficient
- Rate limiting or timeout for high-traffic chains

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

Returns on-chain metadata and analytics for the specified NFT contract, including collection-level information, contract details, and any available statistics for the given blockchain network.

## Example request

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

## 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-contract-lookup-f68c2d38/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)
