# ChainRay Wallet Profile

> ChainRay Wallet Profile 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 profile for a given wallet or contract address across a specified blockchain network

## Facts

- Endpoint: GET https://chainray.online/wallet-profile/: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-wallet-profile-59dc3f1e
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_SEVJ794CxOd2CPCXbDoGl

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-wallet-profile-59dc3f1e
```

Example prompt: Pull the full on-chain wallet profile for 0xd8dA6BF26964aF9D7eEd9e03E53415D37aA96045 on Ethereum — I want to see their activity summary, holdings, and history.

## When to prefer this

Use this endpoint when you need a holistic, multi-dimensional on-chain profile of a wallet or contract — including holdings, transaction patterns, and history — rather than a single data point like token balance or ENS name. Prefer this over /address-report for agent-friendly summarized intelligence, and over narrow endpoints like /token-supply or /ens-resolve when you want a broad wallet-level view.

## Known failure modes

- Invalid or malformed wallet address returns an error
- Unsupported or unrecognized chain value returns an error
- Address not found or no on-chain activity returns empty or minimal profile
- Payment failure (402) if x402 payment header is missing or insufficient
- Rate limiting if too many requests are made in a short period

## How this service works

ChainRay /wallet-profile

## Output

A structured on-chain profile for the specified wallet or contract address, including transaction history, token holdings, activity patterns, and other blockchain intelligence signals for the given chain.

## 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-wallet-profile-59dc3f1e/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)
