# risk.yo.xyz Node Risk Grade Lookup

> risk.yo.xyz Node Risk Grade Lookup 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).

Fetches properties and risk grade (tier A–F) for a single DeFi asset or protocol node by its node ID, including a breakdown of risk factors

## Facts

- Endpoint: GET https://risk.yo.xyz/api/v1/agent/node/asset%3Aarbitrum%3A0x82af49447d8a07e3bd95bd0d56f35241523fbab1
- 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-grade-lookup-817dbf06
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_IsyrjgR6TToWhdVKLakkC

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-grade-lookup-817dbf06
```

Example prompt: What's the risk grade and risk breakdown for the WETH token on Arbitrum (contract 0x82af49447d8a07e3bd95bd0d56f35241523fbab1)? I want to see its risk tier and the factors behind that grade.

## When to prefer this

Use this endpoint when you need the risk grade and properties for a single, specific DeFi asset or protocol node and already have its node ID or asset address. Prefer this over the search/discovery endpoint when you already know the exact node identifier. This is narrower than the dependencies endpoint — it returns no neighbors or graph topology, just the node's own risk metadata.

## Known failure modes

- Node ID not found — returns 404 or empty result if the asset or protocol is not indexed
- Malformed node ID — path param encoding issues can cause 400 errors
- Payment failure — x402 payment of $0.05 USDC required per call; insufficient funds returns 402
- Node exists but has no risk tier yet — properties may be present but _riskTier could be absent
- Rate limiting or service unavailability — 5xx errors if backend graph is down

## How this service works

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

## Output

Returns a node object with stable node ID, PascalCase Neo4j labels (e.g. Asset, Chain), and a properties bag including _riskTier (A–F letter grade), riskBreakdown (array of question/answer pairs explaining the grade), and tvlUsd (canonical USD size). No neighborhood or dependency graph is included — just the node itself.

## Example request

```json
{
 "input": {
  "type": "http",
  "method": "GET",
  "queryParams": {
   "nodeId": "asset:arbitrum:0x82af49447d8a07e3bd95bd0d56f35241523fbab1"
  }
 }
}
```

## 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-grade-lookup-817dbf06/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)
