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

Returns a comprehensive on-chain risk dashboard for a given wallet or contract address on a specified blockchain network

## Facts

- Endpoint: GET https://chainray.online/risk-dashboard/:var1
- Price: $0.02/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/chainray-risk-dashboard-ddd3caf1
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_tpzfETpa3wGseEgLNoORG

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-ddd3caf1
```

Example prompt: Pull the ChainRay risk dashboard for wallet address 0xd8dA6BF26964aF9D7eEd9e03E53415D37aA96045 on Ethereum — I want to see the full risk breakdown before I send any funds.

## When to prefer this

Use this endpoint when you need a holistic, multi-dimensional risk view of a blockchain address rather than a single risk metric. Prefer this over /token-risk when the subject is a wallet or contract (not a specific token), or when you need a full dashboard-style breakdown of risk signals rather than a token-specific risk score.

## Known failure modes

- Invalid or malformed wallet/contract address returns 400 error
- Unsupported blockchain network returns 400 or 404 error
- Address not found on specified chain returns empty or null risk data
- Payment not provided or insufficient USDC returns 402 Payment Required
- Rate limiting or service unavailability returns 429 or 503 error

## How this service works

ChainRay /risk-dashboard

## Output

A structured risk dashboard containing on-chain risk scores, risk indicators, and intelligence signals for the queried wallet or contract address on the specified blockchain, including flags for suspicious behavior, exposure metrics, and overall risk assessment.

## 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-ddd3caf1/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)
