# ScalpStream Ranked Options Feed

> ScalpStream Ranked Options Feed is a paid API for AI agents from feed.scalpstream.com, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-14).

Returns a ranked list of options trading picks from ScalpStream's impersonal research publication feed

## Facts

- Endpoint: GET https://feed.scalpstream.com/picks
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/scalpstream-ranked-options-feed-ae9b1533
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_6d49UjBWb1djKdQRps8t-

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 scalpstream-ranked-options-feed-ae9b1533
```

Example prompt: Pull the latest ScalpStream ranked options picks for today and show me the top 5 picks with their disclaimer.

## When to prefer this

Choose this endpoint when you need a ranked list of options trading picks from a structured research publication feed, especially for short-term or intraday options strategies. Prefer this over ScalpStream's crypto scalp feed when the user specifically needs equity options rather than crypto. Use this instead of generic market data APIs when you want pre-ranked, curated research picks rather than raw price data.

## Known failure modes

- Payment failure if x402 USDC payment is not properly attached — returns 402 Payment Required
- Empty or null picks array if no picks are available for the requested as_of date
- Invalid as_of date format may result in an error or fallback to the latest available picks
- Rate limiting or service unavailability may return 5xx errors
- Stale data if the feed has not been recently updated

## How this service works

ScalpStream US equity options screener: short-dated (0-30 DTE) options candidates ranked by composite score, with ATR%, relative volume, RSI, VWAP distance and implied volatility (impersonal research publication)

## Output

Returns a structured response containing a ranked array of options picks, the as_of timestamp indicating when the picks were generated, a pick count integer, the publication name, and a legal disclaimer string. The picks represent impersonal research publication output, not personalized financial advice.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "properties": {
  "as_of": {
   "type": "string"
  },
  "picks": {
   "type": "array",
   "items": {
    "type": "object",
    "required": [
     "caution_count",
     "confluence_count",
     "grade",
     "illustrative_contract",
     "macro_factor",
     "observed",
     "score",
     "signal_strength",
     "symbol"
    ],
    "properties": {
     "grade": {
      "type": "string"
     },
     "score": {
      "type": "number"
     },
     "symbol": {
      "type": "string"
     },
     "excluded": {
      "type": "boolean"
     },
     "observed": {
      "type": "object",
      "required": [
       "atm_iv",
       "atr_pct",
       "daily_trend",
       "day_change_pct",
       "last",
       "mom_30m_pct",
       "momentum_dir",
       "rel_vol",
       "rsi",
       "session_phase",
       "vwap_dist_pct"
      ],
      "properties": {
       "rsi": {
        "type": "number"
       },
       "last": {
        "type": "number"
       },
       "atm_iv": {
        "type": "number"
       },
       "atr_pct": {
        "type": "number"
       },
       "rel_vol": {
        "type": "number"
       },
       "event_risk": {
        "type": "string"
       },
       "daily_trend": {
        "type": "string"
       },
       "mom_30m_pct": {
        "type": "number"
       },
       "momentum_dir": {
        "type": "string"
       },
       "session_phase": {
        "type": "string"
       },
       "vwap_dist_pct": {
        "type": "number"
       },
       "day_change_pct": {
        "type": "number"
       }
      }
     },
     "headlines": {
      "type": "array",
      "items": {
       "type": "string"
      }
     },
     "macro_factor": {
      "type": "number"
     },
     "caution_count": {
      "type": "number"
     },
     "news_sentiment": {
      "type": "number"
     },
     "signal_strength": {
      "type": "number"
     },
     "confluence_count": {
      "type": "number"
     },
     "illustrative_contract": {
      "type": "object",
      "required": [
       "ask",
       "bid",
       "delta",
       "desc",
       "dte",
       "expiry",
       "note",
       "open_interest",
       "spread_pct",
       "volume"
      ],
      "properties": {
       "ask": {
        "type": "number"
       },
       "bid": {
        "type": "number"
       },
       "dte": {
        "type": "number"
       },
       "desc": {
        "type": "string"
       },
 
… (truncated)
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/scalpstream-ranked-options-feed-ae9b1533/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from feed.scalpstream.com](https://www.zero.xyz/host/feed.scalpstream.com/llms.txt)
