# risk.yo.xyz Node Risk Lookup — Ethereum Chain

> risk.yo.xyz Node Risk Lookup — Ethereum Chain is a paid API for AI agents from risk.yo.xyz, paid per call via x402, $0.05/call, status unknown (last checked 2026-09-15).

Returns properties and risk grade (tier A–F with breakdown) for the Ethereum chain node in the DeFi risk graph

## Facts

- Endpoint: GET https://risk.yo.xyz/api/v1/agent/node/chain%3Aethereum
- Price: $0.05/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/risk-yo-xyz-node-risk-lookup-ethereum-chain-c5562770
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_3KBZaOIDts_gl38dhiERH

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 risk-yo-xyz-node-risk-lookup-ethereum-chain-c5562770
```

Example prompt: What's the risk grade and key properties for the Ethereum chain node on risk.yo.xyz — give me the tier (A–F) and the risk breakdown explaining why it got that grade.

## When to prefer this

Use this endpoint when you specifically need the risk tier and breakdown for the Ethereum chain node as a graph entity — not a pool, asset, or protocol. It is the correct choice when you have the stable nodeId 'chain:ethereum' and want properties plus the A–F risk grade without needing neighborhood/dependency data.

## Known failure modes

- Node not found: if the nodeId path param is malformed or unrecognized, likely a 404 or empty result
- Payment failure: x402 protocol payment of $0.05 USDC not processed, returns 402
- Rate limiting or auth issues leading to 429 or 401 responses
- Schema mismatch: properties bag may be sparse if data is stale or the chain node lacks certain fields like tvlUsd

## How this service works

Single node — properties + risk grade only (no neighborhood)

## Output

Returns a node object with a stable id ('chain:ethereum'), PascalCase Neo4j labels (e.g. 'Chain'), a property bag including _riskTier (A–F letter grade), riskBreakdown (an array of {question, answer} pairs explaining the grade), and tvlUsd (canonical USD size of the chain).

## Example request

```json
{
 "input": {
  "type": "http",
  "method": "GET",
  "queryParams": {
   "nodeId": "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"
    },
    "pathParams": {
     "type": "object",
     "required": [
      "nodeId"
     ],
     "properties": {
      "nodeId": {
       "type": "string"
      }
     }
    },
    "queryParams": {
     "type": "object",
     "required": [
      "nodeId"
     ],
     "properties": {
      "nodeId": {
       "type": "string",
       "description": "Stable node id from /search — e.g. \"pool:ethereum:0x…\"."
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "required": [
      "id",
      "labels",
      "properties"
     ],
     "properties": {
      "id": {
       "type": "string",
       "description": "Stable node identifier — `nodeId` everywhere else in the API."
      },
      "labels": {
       "type": "array",
       "items": {
        "type": "string"
       },
       "description": "PascalCase Neo4j labels (e.g. \"Pool\", \"Asset\", \"Protocol\", \"Chain\")."
      },
      "properties": {
       "type": "object",
       "description": "Per-label property bag — see /agent/schema for the canonical keys. Risk is exposed as `_riskTier` (A–F) only. May also carry `tvlUsd` (canonical $ size), `riskBreakdown` (on /node — an array of {question, answer} explaining the grade, no numbers), and `lastUpdatedAt` (on /dependencies — ISO-8601 freshness).",
       "additionalProperties": true
      }
     }
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/risk-yo-xyz-node-risk-lookup-ethereum-chain-c5562770/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from risk.yo.xyz](https://www.zero.xyz/host/risk.yo.xyz/llms.txt)
