# ChainRay Multi-Sig Wallet Lookup

> ChainRay Multi-Sig Wallet Lookup is a paid API for AI agents from chainray.online, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-15).

Retrieves multi-signature wallet information for a given address on a specified blockchain network

## Facts

- Endpoint: GET https://chainray.online/multi-sig/%7Baddress%7D
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/chainray-multi-sig-wallet-lookup-6bfb33ed
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_oPjc3mIA2hZHrij7AXmX5

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-multi-sig-wallet-lookup-6bfb33ed
```

Example prompt: Pull the multi-sig wallet details for address 0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 on Ethereum — I want to see who the signers are and what the approval threshold is.

## When to prefer this

Use this endpoint when you need to inspect multi-signature wallet configuration on any of 46 supported blockchains, especially when you need cross-chain coverage beyond Ethereum mainnet. Prefer this over manual block explorer lookups when programmatic, agent-accessible multi-sig data is needed at $0.01 per call.

## Known failure modes

- Address not found or not a multi-sig wallet — returns empty or error response
- Invalid address format — schema validation error
- Unsupported chain parameter — error indicating chain not among 46 supported networks
- Payment failure via x402 — 402 response if USDC payment not provided
- Network timeout or chain RPC unavailability — upstream error

## 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 multi-signature wallet configuration data for the queried address, including signer addresses, approval threshold, pending transactions, and related chain metadata for the specified blockchain network.

## Example request

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

## 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-multi-sig-wallet-lookup-6bfb33ed/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)
