# ChainRay Agent Reputation

> ChainRay Agent Reputation 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).

Retrieves on-chain reputation and behavioral intelligence for a given wallet or contract address across supported blockchain networks

## Facts

- Endpoint: GET https://chainray.online/agent-reputation/%7Baddress%7D
- 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-agent-reputation-136d14ba
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_twhXWpj4uvw3qjcL2iP4Q

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-agent-reputation-136d14ba
```

Example prompt: What's the on-chain reputation for wallet address 0x742d35Cc6634C0532925a3b8D4C9B9b26f3eA6a2 on Ethereum — is it trustworthy or has it been flagged for suspicious activity?

## When to prefer this

Use this endpoint when you need to assess the trustworthiness or risk profile of a specific blockchain address before interacting with it, transacting with it, or including it in a DeFi workflow — especially when you need coverage across 46 chains with a single API and pay-per-request pricing

## Known failure modes

- Invalid or malformed wallet/contract address returns 400 error
- Unsupported chain identifier returns error indicating chain not available
- Address not found or no on-chain history results in empty or minimal reputation data
- Payment failure via x402 protocol returns 402 Payment Required
- Rate limiting or service unavailability 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 on-chain reputation data for the specified address, including behavioral signals, trust scores, risk indicators, and historical activity patterns relevant to assessing the address's credibility and safety for interaction

## Example request

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

## 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-agent-reputation-136d14ba/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)
