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

Returns on-chain risk scoring and intelligence for a given token or wallet address on a specified blockchain

## Facts

- Endpoint: GET https://chainray.online/token-risk/%7Baddress%7D
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-08
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/chainray-token-risk-assessment-e9036289
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_huFzb97HxaL74C2s_tbei

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

Example prompt: Can you check the risk score for this token contract 0xdAC17F958D2ee523a2206206994597C13D831ec7 on Ethereum — I want to know if it's safe to interact with before I buy any.

## When to prefer this

Use this endpoint when an agent or user needs to assess the safety and risk level of a specific token contract or wallet address before interacting with it. Ideal for DeFi due diligence, scam detection, and pre-trade safety checks across 46 supported chains.

## Known failure modes

- Invalid or malformed contract/wallet address returns 400 error
- Unsupported blockchain network returns error or empty result
- Address not found on the specified chain returns 404 or empty data
- Payment not included or insufficient returns 402 Payment Required
- Rate limiting or overload returns 429 or 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

Returns a risk assessment for the provided token or wallet address, including risk scores, flags for suspicious behavior (e.g. honeypot, rug pull indicators, contract vulnerabilities), and on-chain intelligence signals relevant to the specified blockchain network.

## Example request

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

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