# ChainRay Token Risk Assessment

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

Returns a risk assessment for a given token/contract address on a specified blockchain network

## Facts

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

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-token-risk-assessment-ef8b7091
```

Example prompt: Can you run a ChainRay token risk check on contract address 0xdAC17F958D2ee523a2206206994597C13D831ec7 on Ethereum and tell me if it looks safe to trade?

## When to prefer this

Use this endpoint when an AI agent needs to assess the risk or safety of a specific token or smart contract address before recommending a trade, investment, or interaction. Prefer this over generic blockchain explorers when you need a structured risk score or flag-based analysis rather than raw on-chain data. Especially useful in DeFi agent workflows where token safety screening is required prior to execution.

## Known failure modes

- Invalid or malformed contract address returns an error
- Unsupported blockchain network returns a 400 or 404 error
- Address not found on specified chain returns empty or not-found response
- Payment failure (x402) if USDC payment is not properly handled
- Rate limiting if too many requests are made in quick succession

## How this service works

ChainRay /token-risk

## Output

Returns a risk assessment for the specified token contract address, likely including a risk score, identified risk factors or flags (e.g. honeypot, rug pull indicators, ownership concentration), and overall safety classification for the token on the specified blockchain.

## 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-token-risk-assessment-ef8b7091/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)
