# 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-16).

Generates a comprehensive on-chain report for a given wallet or contract address on a specified blockchain network

## Facts

- Endpoint: GET https://chainray.online/address-report/:var1
- Price: $0.05/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-16
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/chainray-online-9ede3545
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_aUByHwqBSHknzTb7lw5Xi

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-online-9ede3545
```

Example prompt: Can you pull a full on-chain report for wallet address 0xd8dA6BF26964aF9D7eEd9e03E53415D37aA96045 on the Base network?

## When to prefer this

Use this endpoint when you need a comprehensive on-chain profile of a specific wallet or contract address, including holdings, activity, and metadata. Prefer this over narrower endpoints (like whale-tracker or defi-yields) when you want a general-purpose address audit rather than a specific metric.

## Known failure modes

- Invalid or malformed wallet/contract address returns an error
- Unsupported chain parameter causes a failure or empty result
- Address not found on the specified chain returns empty or null data
- Payment failure (x402) if USDC not provided results in 402 response
- Rate limiting or network timeouts if the chain is congested

## How this service works

ChainRay /address-report

## Output

Returns a structured on-chain report for the queried address, including transaction history, token balances, contract status, and other relevant on-chain metadata for the specified 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-online-9ede3545/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)
