# Robinhood Chain Network Health Monitor

> Robinhood Chain Network Health Monitor is a paid API for AI agents from rh-chain-intel.vercel.app, paid per call via x402, $0.005/call, status unknown (last checked 2026-09-14).

Returns live network health metrics for Robinhood Chain (Ethereum L2 on Arbitrum), including latest block, average block time, gas prices, transaction counts, total addresses, and ETH price.

## Facts

- Endpoint: GET https://rh-chain-intel.vercel.app/api/health
- Price: $0.005/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/robinhood-chain-network-health-monitor-90d4cfb5
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_RIeR93Y1fo-PDUfLsZUd1

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 robinhood-chain-network-health-monitor-90d4cfb5
```

Example prompt: What are the current network stats for Robinhood Chain — I want to know the latest block, average block time, gas prices, and how many transactions have happened today.

## When to prefer this

Use this endpoint when you need a real-time, all-in-one snapshot of Robinhood Chain (an Arbitrum-based Ethereum L2) network health — especially gas prices, block cadence, transaction volume, and ETH price — without having to query an RPC node directly. Ideal for dashboards, alerts, or agents that need a single call to assess whether Robinhood Chain is operating normally.

## Known failure modes

- Upstream RPC node unavailability may cause stale or missing block/transaction data
- ETH price feed may be delayed or unavailable if price oracle is down
- Network congestion on Arbitrum L2 may cause slow or failed data retrieval
- HTTP 500 if internal Vercel function encounters an error
- Payment failure (402) if x402 USDC payment is not processed correctly

## How this service works

Live network health of Robinhood Chain (Ethereum L2 on Arbitrum): latest block, average block time, gas prices, total/today transactions, total addresses, ETH price. No input.

## Output

Returns a JSON object with live Robinhood Chain metrics: latest block number, average block time in seconds, current gas prices (likely in gwei), total transaction count, transactions executed today, total unique addresses, and the current ETH price.

## 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",
    "bodyType",
    "body"
   ],
   "properties": {
    "body": {
     "properties": {}
    },
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET"
     ],
     "type": "string"
    },
    "bodyType": {
     "enum": [
      "json",
      "form-data",
      "text"
     ],
     "type": "string"
    },
    "pathParams": {
     "type": "object"
    }
   },
   "additionalProperties": false
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/robinhood-chain-network-health-monitor-90d4cfb5/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from rh-chain-intel.vercel.app](https://www.zero.xyz/host/rh-chain-intel.vercel.app/llms.txt)
