# Orchard Data Symbol Dossier

> Orchard Data Symbol Dossier is a paid API for AI agents from orchard-data.letom1176.workers.dev, paid per call via x402, $0.02/call, status unknown (last checked 2026-09-14).

Returns a comprehensive market dossier for a given stock ticker, including quote, technicals, news catalysts, and options expected move.

## Facts

- Endpoint: GET https://orchard-data.letom1176.workers.dev/api/symbol-dossier
- 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/orchard-data-symbol-dossier-d824bba3
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_k3LLKrfoO-j3oYPox69xN

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 orchard-data-symbol-dossier-d824bba3
```

Example prompt: Pull the full market dossier for NVDA — I want the current price, trend, how far it is from the 200-day moving average, realized volatility, and options expected move.

## When to prefer this

Choose this endpoint when you need a rich, multi-dimensional snapshot of a single equity ticker in one call — combining price quote, trend/technical context, volatility, options expected move, and news catalysts. It is ideal for pre-trade research, agent-driven stock screening, or enriching a portfolio monitoring workflow. Prefer it over generic quote APIs when you need technicals and options data bundled together without multiple round trips.

## Known failure modes

- Invalid or unrecognized ticker symbol returns an error or empty response
- Missing required 'symbol' query parameter results in a 400-level error
- Payment failure via x402/USDC results in a 402 Payment Required response
- Stale or unavailable market data may return null or missing fields for some sections
- Rate limiting or upstream data provider outage may cause 5xx errors

## How this service works

Market data for AI agents, paid per-call via x402 (USDC on Base). Free index at /, free spec here.

## Output

A JSON object containing: the ticker symbol, a quote with last price and percent change, technicals including trend label, percent deviation from the 200-day SMA, and 20-day annualized realized volatility, a news catalysts section with any catalyst hits, and the options expected move percent for the near term.

## 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"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "symbol"
     ],
     "properties": {
      "symbol": {
       "type": "string",
       "description": "Ticker, e.g. NVDA, SPY"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "quote": {
   "last": 172.4,
   "change_pct": 1.2
  },
  "symbol": "NVDA",
  "technicals": {
   "trend": "uptrend",
   "vs_sma200_pct": 18.2,
   "realized_vol_20d_annualized_pct": 31
  },
  "news_catalysts": {
   "catalyst_hits": []
  },
  "options_expected_move": {
   "expected_move_pct": 3.1
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/orchard-data-symbol-dossier-d824bba3/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from orchard-data.letom1176.workers.dev](https://www.zero.xyz/host/orchard-data.letom1176.workers.dev/llms.txt)
