# ChainRay Verify Proof

> ChainRay Verify Proof is a paid API for AI agents from chainray.online, paid per call via x402, $0.005/call, status unknown (last checked 2026-09-15).

Verifies cryptographic or on-chain proofs for a specified blockchain network

## Facts

- Endpoint: GET https://chainray.online/verify-proof
- Price: $0.005/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/chainray-verify-proof-5730e48b
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_j6bkeUa36cURS02SN47Qz

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-verify-proof-5730e48b
```

Example prompt: Can you verify this on-chain proof on the Base network to confirm it's valid?

## When to prefer this

Use this endpoint when you need to cryptographically verify or validate an on-chain proof for a specific blockchain network supported by ChainRay. Prefer this over generic blockchain explorers when you need verifiable, agent-consumable proof validation with pay-per-request simplicity across 46+ chains.

## Known failure modes

- Missing or invalid 'chain' parameter returns an error or empty result
- Unsupported chain identifier results in a bad request response
- Invalid or malformed proof data returns a verification failure
- Network connectivity issues or chain node unavailability cause timeouts
- Payment not fulfilled (402) blocks the request before processing

## 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 verification result indicating whether the submitted proof is valid on the specified blockchain network, along with relevant proof details and validity status.

## 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"
    },
    "queryParams": {
     "type": "object",
     "properties": {
      "chain": {
       "type": "string",
       "description": "Blockchain network (e.g., base, ethereum, polygon)"
      }
     }
    }
   },
   "additionalProperties": false
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/chainray-verify-proof-5730e48b/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)
