# ChainRay Address Report

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

Generates a comprehensive on-chain intelligence report for a given blockchain wallet or contract address across supported chains

## Facts

- Endpoint: GET https://chainray.online/address-report/%7Baddress%7D
- Price: $0.05/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/chainray-address-report-27ae00eb
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_apUJ76-telD9Kf7yvvj5B

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-address-report-27ae00eb
```

Example prompt: Pull a full on-chain intelligence report for the Ethereum wallet 0xd8dA6BF26964aF9D7eEd9e03E53415D37aA96045 — I want to see its activity, holdings, and any DeFi interactions.

## When to prefer this

Use this endpoint when you need a comprehensive, multi-dimensional profile of a blockchain address in a single call — covering holdings, activity, and DeFi context — rather than querying individual data points separately. Best when investigating unknown wallets, performing due diligence on counterparties, or enriching user profiles with on-chain data.

## Known failure modes

- Invalid or malformed address returns 400 error
- Unsupported chain identifier returns 400 or 404
- Payment not provided or insufficient returns 402
- Address has no on-chain activity — empty report with zero data
- Network timeout or chain RPC unavailability returns 503

## 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 structured on-chain report for the specified address, including transaction history, token balances, DeFi protocol interactions, risk signals, and other intelligence data available for the requested blockchain network.

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

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/chainray-address-report-27ae00eb/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)
