# ChainRay Security Check — On-Chain Address Security Screening

> ChainRay Security Check — On-Chain Address Security Screening 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).

Performs a security check on a blockchain wallet address to identify risks, flags, or threats associated with it on a specified chain.

## Facts

- Endpoint: GET https://chainray.online/security-check/%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-security-check-on-chain-address-security-screening-68de3c4a
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_9bURPjaGKzEt45pIoEuYM

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-security-check-on-chain-address-security-screening-68de3c4a
```

Example prompt: Run a security check on the address 0x742d35Cc6634C0532925a3b8D4C9b5A3bF1D7A9C on Ethereum — I want to know if it's flagged, blacklisted, or associated with any hacks or scams before I send funds to it.

## When to prefer this

Use this endpoint when you need to screen a specific blockchain address for security risks before executing a transaction, integrating a counterparty, or interacting with a smart contract. Prefer this over generic block explorers when you need structured, machine-readable risk signals suitable for agent decision-making.

## Known failure modes

- Invalid or malformed address format returns an error
- Unsupported chain identifier results in a 400 or 404 response
- Address not yet indexed on the chain returns no data or empty result
- Payment failure via x402 results in a 402 response and no data returned
- Network timeout for real-time chain queries

## 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 security assessment of the queried blockchain address, including risk flags, threat indicators, blacklist status, and any known associations with malicious activity on the specified chain.

## Example request

```json
{
 "chain": "ethereum"
}
```

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "chain": {
   "enum": [
    "base",
    "ethereum",
    "arbitrum",
    "optimism",
    "polygon",
    "bsc",
    "avalanche",
    "zksync",
    "linea",
    "scroll",
    "blast",
    "mantle",
    "gnosis",
    "polygon-zkevm",
    "mode",
    "sei",
    "celo",
    "manta",
    "taiko",
    "fantom",
    "cronos",
    "opbnb",
    "zora",
    "worldchain",
    "metis",
    "fraxtal",
    "kava",
    "zetachain",
    "filecoin",
    "core-dao",
    "aurora",
    "moonbeam",
    "klaytn",
    "bob",
    "canto",
    "solana",
    "sui",
    "aptos",
    "ton",
    "xrp",
    "tron",
    "doge",
    "cardano",
    "near",
    "cosmos",
    "bitcoin"
   ],
   "type": "string",
   "description": "Target blockchain"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "object",
 "additionalProperties": true
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/chainray-security-check-on-chain-address-security-screening-68de3c4a/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)
