# ChainRay Cross-Chain Address Lookup

> ChainRay Cross-Chain Address Lookup 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 cross-chain blockchain data for a given wallet or contract address across multiple networks

## Facts

- Endpoint: GET https://chainray.online/cross-chain/: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-cross-chain-address-lookup-c15fe3c6
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_oGcL0NbjfJOsa59ts3Fn4

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-cross-chain-address-lookup-c15fe3c6
```

Example prompt: Can you pull up the cross-chain activity for the wallet address 0x742d35Cc6634C0532925a3b844Bc454e4438f44e across all blockchains ChainRay supports?

## When to prefer this

Use this endpoint when you need to understand a wallet or contract's presence and activity across multiple blockchain networks in a single call, rather than querying each chain individually. Ideal for cross-chain portfolio analysis, multi-chain due diligence, or tracing an address's footprint across the 46+ chains ChainRay supports.

## Known failure modes

- Invalid or malformed address returns 400 error
- Address not found on any supported chain returns empty result
- Unsupported chain parameter returns error
- Payment failure via x402 protocol blocks request
- Rate limiting may occur under high volume
- Network-specific RPC outages may yield partial results

## How this service works

ChainRay /cross-chain

## Output

Returns cross-chain data for the specified wallet or contract address, including presence and activity across multiple blockchain networks such as balances, transactions, and chain-specific data points.

## 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-cross-chain-address-lookup-c15fe3c6/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)
