# ADH Single-Stock Panoramic Intelligence Report

> ADH Single-Stock Panoramic Intelligence Report is a paid API for AI agents from agentdatum.com, paid per call via x402, $0.05/call, status unknown (last checked 2026-09-15).

Returns a comprehensive per-stock intelligence package including price history, momentum signals, options chain (CBOE), short interest (NASDAQ), and SEC EDGAR fundamentals, aggregated from multiple raw data sources.

## Facts

- Endpoint: GET https://agentdatum.com/api/v1/d/sig-stock-report
- 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/adh-single-stock-panoramic-intelligence-report-55472016
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_9AeiIIXmv08dImnV4PDwm

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 adh-single-stock-panoramic-intelligence-report-55472016
```

Example prompt: Pull the full single-stock panoramic report for AAPL — I want the momentum signals, options chain, short interest, and SEC fundamentals all in one shot.

## When to prefer this

Choose this endpoint when you need a single-call, multi-source equity intelligence package that combines price momentum signals, options market data, short interest, and SEC fundamentals — avoiding the need to stitch together multiple APIs. Ideal for agent workflows doing pre-trade research, earnings preparation, or fundamental screening. Prefer over raw data APIs when entity resolution, time synchronization, and provenance metadata are required out of the box.

## Known failure modes

- Missing or invalid ticker symbol returns an error or empty result
- CBOE delayed quotes may lag real-time by 15+ minutes
- SEC EDGAR data reflects latest filed fiscal year, not real-time
- Payment not settled via x402 results in 402 Payment Required
- Options chain count limited to ~40 contracts; full chain not available
- Rate limiting or upstream source unavailability may return partial data

## How this service works

ADH 金融情报层：把 239 个原始数据源洗成带实体解析、时间同步、溯源与派生结论的情报（宏观regime / 加密尽调 / 事件窗口），免费注入你的 AI 上下文。Agent 走 x402 结算，人类订阅（PayPal）即将上线。

## Output

A JSON object containing: (1) price history time series, (2) signal layer with 4-week momentum, 20-day volatility, z-scores (10/30-day), last value, and percentile ranks; (3) CBOE options chain with Greeks, IV, bid/ask, expiry, strike, volume, open interest, and 0DTE spike data; (4) NASDAQ short interest records with days-to-cover, settlement date, and avg daily volume; (5) SEC EDGAR XBRL core metrics (assets, liabilities, revenues, gross profit, net income) with fiscal year and filing metadata.

## 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": [],
     "properties": {}
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "raw": {
   "method": "aggregate of existing depth endpoints + signal layer",
   "signal": {
    "mom_4": 0.0321,
    "vol_20": 0.023,
    "zscore_10": -0.6696,
    "zscore_30": -0.1112,
    "last_value": 313.33,
    "pctrank_10": 50,
    "pctrank_30": 43.3333
   },
   "symbol": "AAPL",
   "history": [
    {
     "ts": 1782480600,
     "value": 283.779999
    },
    {
     "ts": 1782480600,
     "value": 283.779999
    }
   ],
   "product": "单股全景研究包",
   "sections": {
    "options_chain": {
     "count": 40,
     "source": "CBOE delayed quotes",
     "symbol": "AAPL",
     "options": [
      {
       "iv": 0,
       "ask": 204.15,
       "bid": 202.05,
       "rho": 0,
       "type": "C",
       "vega": 0,
       "delta": 1,
       "gamma": 0,
       "theta": 0,
       "expiry": "2026-08-07",
       "strike": 110,
       "volume": 1,
       "openInterest": 7
      },
      {
       "iv": 0,
       "ask": 204.15,
       "bid": 202.05,
       "rho": 0,
       "type": "C",
       "vega": 0,
       "delta": 1,
       "gamma": 0,
       "theta": 0,
       "expiry": "2026-08-07",
       "strike": 110,
       "volume": 1,
       "openInterest": 7
      }
     ],
     "odte_spike": [
      {
       "iv": 0,
       "ask": 189.7,
       "bid": 187,
       "rho": 0,
       "type": "C",
       "vega": 0,
       "delta": 1,
       "gamma": 0,
       "theta": -0.0001,
       "expiry": "2026-08-07",
       "strike": 125,
       "volume": 4,
       "openInterest": 3
      },
      {
       "iv": 0,
       "ask": 189.7,
       "bid": 187,
       "rho": 0,
       "type": "C",
       "vega": 0,
       "delta": 1,
       "gamma": 0,
       "theta": -0.0001,
       "expiry": "2026-08-07",
       "strike": 125,
       "volume": 4,
       "openInterest": 3
      }
     ]
    },
    "short_interest": {
     "source": "NASDAQ short-interest",
     "symbol": "AAPL",
     "records": [
      {
       "daysToCover": 3.056084,
       "shortInterest": 146547784,
       "avgDailyVolume": 47952794,
       "settlementDate": "07/15/2026"
      },
      {
       "daysToCover": 3.056084,
       "shortInterest": 146547784,
       "avgDailyVolume": 47952794,
       "settlementDate": "07/15/2026"
      }
     ]
    },
    "sec_fundamentals": {
     "cik": "0000320193",
     "note": "us-gaap核心子集, 最近财年(FY)",
     "source": "SEC EDGAR XBRL",
     "symbol": "AAPL",
     "metrics": {
      "Assets": {
       "fy": 2025,
       "form": "10-K",
       "unit": "USD",
 
… (truncated)
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/adh-single-stock-panoramic-intelligence-report-55472016/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from agentdatum.com](https://www.zero.xyz/host/agentdatum.com/llms.txt)
