# ChainRay Risk Dashboard

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

Returns a risk assessment dashboard for a given blockchain wallet or contract address, including risk indicators and on-chain intelligence.

## Facts

- Endpoint: GET https://chainray.online/risk-dashboard/%7Baddress%7D
- Price: $0.02/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/chainray-risk-dashboard-9d8a25f9
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_f9V8a6uFTq4aoyWwVh-nf

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-risk-dashboard-9d8a25f9
```

Example prompt: Can you pull up the ChainRay risk dashboard for Ethereum address 0xd8dA6BF26964aF9D7eEd9e03E53415D37aA96045 and tell me if it looks risky?

## When to prefer this

Use this endpoint when you need a consolidated risk assessment for a specific blockchain address — wallet or contract — especially before executing a transaction, onboarding a user, or evaluating a DeFi counterparty. Prefer this over raw transaction-history endpoints when you want a pre-computed risk score rather than raw data.

## Known failure modes

- Invalid or malformed address returns a 400 error
- Unsupported chain parameter returns an error or empty result
- Payment not received results in a 402 Payment Required response
- Address not found on-chain returns empty or null risk data
- Rate limiting or network timeout returns a 5xx error

## 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 risk dashboard payload containing risk scores, flags, and on-chain intelligence indicators for the specified address on the requested blockchain network.

## Example request

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

## 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-risk-dashboard-9d8a25f9/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)
