# ChainRay Chain Status

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

Returns the current operational status and health metrics for a specified blockchain network

## Facts

- Endpoint: GET https://chainray.online/oracle/chain-status
- Price: $0.005/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/chainray-chain-status-00cad016
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_dffilHKpRBjK0PRfT0qao

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-chain-status-00cad016
```

Example prompt: What's the current status of the Base blockchain — is it up and running normally right now?

## When to prefer this

Use this endpoint when an agent needs to verify whether a specific blockchain network is operational before executing transactions, routing intents, or fetching on-chain data — especially useful as a pre-flight check before DeFi operations or cross-chain activity.

## Known failure modes

- Invalid or unsupported chain identifier returns an error response
- Network lookup fails for chains outside the supported 46-chain list
- Payment of $0.005 USDC not provided results in 402 Payment Required
- Service unavailable if ChainRay backend is down

## 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 the current operational status of the specified blockchain network, including whether the chain is active, any known issues, and relevant health indicators for that network.

## Example request

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

## 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-chain-status-00cad016/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)
