# x402donghang Crypto Radar

> x402donghang Crypto Radar is a paid API for AI agents from x402donghang.duckdns.org, paid per call via x402, $0.02/call, status unknown (last checked 2026-09-14).

Searches recent X posts and the web, adds a CoinGecko market snapshot, and returns structured sentiment signals, narratives, risks, and watch items for a given crypto ticker and time window.

## Facts

- Endpoint: GET https://x402donghang.duckdns.org/x402/v1/crypto-radar
- Price: $0.02/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/x402donghang-crypto-radar-c47763e1
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_ZwJ1RTlf0bWsn_bIu_UJY

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 x402donghang-crypto-radar-c47763e1
```

Example prompt: What's the current narrative and sentiment radar for SOL over the last 6 hours — give me signals, risks, and any key watch items along with the live CoinGecko price?

## When to prefer this

Choose this endpoint when you need a structured, verifiable, multi-source crypto sentiment report that combines social/web narrative signals with a live market price snapshot — especially when you need source URLs for auditability, named narratives with direction, and a confidence score. Prefer this over generic LLM-based crypto commentary when you need fresh data from the last 1h to 7d and a machine-readable JSON format suitable for downstream agent processing.

## Known failure modes

- Invalid or unrecognized ticker symbol returns an error or empty signals
- Time window enum value outside allowed set (1h/6h/24h/7d) causes validation failure
- CoinGecko market data unavailable leads to missing market field
- Insufficient recent web/X posts for the window may result in low confidence score or sparse signals
- Payment of $0.03 USDC not completed results in 402 Payment Required response
- focus parameter exceeding 300 characters may be rejected or truncated

## How this service works

Live crypto narrative and sentiment radar for AI agents. Searches recent X posts and the web, adds a verifiable CoinGecko market snapshot, and returns structured signals, risks, watch items, and source URLs. Input ticker + 1h/6h/24h/7d window. $0.03 USDC per call.

## Output

A structured JSON object containing: sentiment label (bullish/bearish/mixed/neutral) and score, a list of named narratives with direction and evidence URLs, signal list, risk warnings, watch_next items, a CoinGecko market snapshot (price in USD, 24h change %), overall summary text, confidence score, observed timestamp, source count, and an array of source URLs with titles and types. Also includes a disclaimer that this is information only.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "focus": {
   "type": "string",
   "description": "Optional research focus, max 300 characters"
  },
  "locale": {
   "enum": [
    "en",
    "zh"
   ],
   "type": "string",
   "description": "Output language; default en"
  },
  "symbol": {
   "type": "string",
   "description": "Crypto ticker, e.g. BTC, ETH, SOL, HYPE, XRP, DOGE"
  },
  "window": {
   "enum": [
    "1h",
    "6h",
    "24h",
    "7d"
   ],
   "type": "string",
   "description": "Freshness window; default 6h"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "ok": true,
  "risks": [
   "A low-volatility range can break sharply in either direction."
  ],
  "market": {
   "provider": "CoinGecko",
   "price_usd": 63821,
   "change_24h_pct": 0.19
  },
  "symbol": "BTC",
  "window": "6h",
  "product": "crypto-radar",
  "signals": [],
  "sources": [
   {
    "url": "https://example.com/source",
    "type": "web",
    "title": "Source title"
   }
  ],
  "summary": "ETF-flow support is offset by cautious positioning and low volatility.",
  "sentiment": "mixed",
  "confidence": 0.74,
  "disclaimer": "Information only, not financial advice.",
  "narratives": [
   {
    "name": "ETF flows",
    "direction": "supportive",
    "evidence_urls": [
     "https://example.com/source"
    ]
   }
  ],
  "watch_next": [
   "Confirmed exchange-flow changes",
   "A break of the observed range"
  ],
  "observed_at": "2026-08-13T07:30:00.000Z",
  "source_count": 1,
  "sentiment_score": 0.12
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/x402donghang-crypto-radar-c47763e1/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from x402donghang.duckdns.org](https://www.zero.xyz/host/x402donghang.duckdns.org/llms.txt)
