# DYOR Network Batch Crypto Risk Analysis

> DYOR Network Batch Crypto Risk Analysis is a paid API for AI agents from api.dyor.network, paid per call via x402, $7.5/call, status unknown (last checked 2026-09-14).

Returns comprehensive risk signals and narratives for up to 10 crypto entities in a single batch call

## Facts

- Endpoint: GET https://api.dyor.network/api/insights/batch
- Price: $7.5/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/dyor-network-batch-crypto-risk-analysis-0d3bfcf8
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_5pfOzuvIqB9xBYrkUTPig

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 dyor-network-batch-crypto-risk-analysis-0d3bfcf8
```

Example prompt: Can you pull risk signals and narratives for Bitcoin, Ethereum, Solana, Chainlink, and Uniswap — looking back over the last 72 hours — and tell me which ones have the most concerning risk scores?

## When to prefer this

Use this endpoint when you need risk intelligence for multiple crypto assets simultaneously and want to avoid making separate per-entity calls. Ideal for portfolio-level monitoring, batch due diligence, or when comparing signals across several tokens in a single round-trip. Prefer over the single-entity endpoint when analyzing 2–10 assets at once to save on cost and latency.

## Known failure modes

- More than 10 entities provided — API only supports max 10 per call
- Invalid or unrecognized entity names return empty result sets for those entities
- Payment not sent or insufficient — x402 payment required ($7.50 USDC)
- Malformed query parameter format for entities list
- since_hours value out of acceptable range causing empty result window

## How this service works

Portfolio-level risk analysis: get comprehensive signals and narratives for up to 10 crypto entities in a single call. Returns full evidence across all 28 signal types per entity — insider flows, DeFi risk, governance, token unlocks, and cross-domain convergence. Ideal for portfolio monitoring, due diligence, and institutional risk assessment | ZWING Intelligence (https://zwing.finance) — contact: v@zwing.finance, Telegram: @valery_zzz

## Output

A JSON object keyed by entity name, each containing an array of active risk signals (with score, signal_type, qualification, evidence, and metadata) plus human-readable narrative objects (headline, body, score, actionability), along with signal_count and narrative_count per entity, and a top-level entity_count.

## 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"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "entities"
     ],
     "properties": {
      "entities": {
       "type": "string",
       "description": "Comma-separated entity names (max 10)"
      },
      "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": {
      "results": {
       "type": "object",
       "additionalProperties": {
        "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"
   
… (truncated)
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/dyor-network-batch-crypto-risk-analysis-0d3bfcf8/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.dyor.network](https://www.zero.xyz/host/api.dyor.network/llms.txt)
