# DYOR Knowledge Graph — Entity Risk & Opportunity Signals

> DYOR Knowledge Graph — Entity Risk & Opportunity Signals is a paid API for AI agents from kg.dyor.network, paid per call via x402, $1/call, status unknown (last checked 2026-09-13).

Returns comprehensive risk and opportunity signals with AI-synthesized narratives for a specific crypto entity, covering 28 signal types including smart money flows, DeFi risk, governance, token unlocks, and yield anomalies.

## Facts

- Endpoint: GET https://kg.dyor.network/api/insights/entity/Ethereum
- Price: $1/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/kg-dyor-network-4e67f7e0
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_VXLedRQZ_DFuPGBnb53e5

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 kg-dyor-network-4e67f7e0
```

Example prompt: Can you pull all the active risk and opportunity signals for Ethereum from the last 7 days — I want to see smart money flows, any DeFi risks, governance alerts, token unlocks, and the AI narrative summaries with actionability ratings?

## When to prefer this

Choose this endpoint when you need deep, multi-dimensional risk and opportunity intelligence for a specific named crypto entity, combining on-chain signals, governance, token unlock schedules, smart money movements, and AI narratives in a single call. Prefer this over general market data endpoints when you want signal-based analysis rather than raw metrics, or when actionability ratings and synthesized narratives are needed for decision support.

## Known failure modes

- Entity not found in knowledge graph — returns empty signals array
- Invalid or unrecognized entity name — may return 404 or empty result
- Payment not processed (x402) — returns 402 Payment Required before data is served
- since_hours parameter out of acceptable range — may return validation error or default behavior
- Upstream knowledge graph unavailable — returns 503 or timeout

## How this service works

Comprehensive risk and opportunity analysis for any crypto entity. Returns all active signals with full evidence across 28 signal types: smart money flows, DeFi risk, governance, token unlocks, yield anomalies, and cross-domain convergence alerts. Includes AI-synthesized narratives with actionability ratings. Free signal browsing at GET /api/insights/signals, full catalog at GET /api/signals/catalog | ZWING Intelligence (https://zwing.bot) — contact: v@zwing.bot, Telegram: @valery_zzz

## Output

A JSON object containing an array of active signals (each with signal_id, signal_type, score, entities, evidence, metadata, qualification, and created_at), an array of AI-synthesized narratives (each with entity, headline, body, signal_type, score, and actionability rating), plus aggregate counts for signals and narratives.

## 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",
      "HEAD",
      "DELETE"
     ],
     "type": "string"
    },
    "pathParams": {
     "type": "object",
     "required": [
      "entity_name"
     ],
     "properties": {
      "entity_name": {
       "type": "string",
       "description": "Crypto entity name in the URL path — e.g. Aave, Ethereum, Uniswap (use GET /api/search for exact names)"
      }
     }
    },
    "queryParams": {
     "type": "object",
     "properties": {
      "since_hours": {
       "type": "number",
       "default": 168,
       "description": "Look back window in hours (default 7 days)"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "properties": {
      "signals": {
       "type": "array",
       "items": {
        "type": "object",
        "properties": {
         "score": {
          "type": "number"
         },
         "entities": {
          "type": "array",
          "items": {
           "type": "string"
          }
         },
         "evidence": {
          "type": "object"
         },
         "metadata": {
          "type": "object"
         },
         "signal_id": {
          "type": "string"
         },
         "created_at": {
          "type": "string"
         },
         "signal_type": {
          "type": "string"
         },
         "qualification": {
          "type": "string"
         }
        }
       }
      },
      "narratives": {
       "type": "array",
       "items": {
        "type": "object",
        "properties": {
         "body": {
          "type": "string"
         },
         "score": {
          "type": "number"
         },
         "entity": {
          "type": "string"
         },
         "headline": {
          "type": "string"
         },
         "signal_type": {
          "type": "string"
         },
         "actionability": {
          "type": "string"
         }
        }
       }
      },
      "signal_count": {
       "type": "integer"
      },
      "narrative_count": {
       "type": "integer"
   
… (truncated)
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/kg-dyor-network-4e67f7e0/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from kg.dyor.network](https://www.zero.xyz/host/kg.dyor.network/llms.txt)
