# ScalpStream Crypto Scalp Feed

> ScalpStream Crypto Scalp 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 curated list of short-term cryptocurrency scalp trading picks as an impersonal research publication feed

## Facts

- Endpoint: GET https://feed.scalpstream.com/crypto
- 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-crypto-scalp-feed-571828ef
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_T5DqUMakyuBSBniGR1Vnl

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-crypto-scalp-feed-571828ef
```

Example prompt: Pull me the latest ScalpStream crypto scalp picks as of today — give me 5 picks and include the standard disclaimer.

## When to prefer this

Choose this endpoint when you need short-term, scalp-focused cryptocurrency trade ideas delivered as a structured research publication. It is distinct from staking/yield feeds, options feeds, and municipal income feeds on the same platform. Prefer this over general crypto data APIs when the user specifically wants curated, actionable scalp picks rather than raw price data or long-term investment research.

## Known failure modes

- Payment required (402) if x402 payment header is missing or invalid
- Invalid as_of date format may return an error or default to current date
- Requesting more picks than available may return a partial list or error
- Service may return stale data if feed has not been updated recently
- Network timeout if the feed provider is temporarily unavailable

## How this service works

ScalpStream cryptocurrency screener: coins ranked by RSI, ATR%, VWAP distance and 30-minute momentum with a Fear & Greed macro overlay — which coins show technical setups, not raw price quotes (impersonal research publication)

## Output

Returns a structured publication object containing an as_of timestamp, a list of crypto scalp picks (each likely including ticker/symbol and relevant trade details), a pick count, a publication identifier, and a legal disclaimer — formatted as an impersonal research publication feed.

## 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",
     "macro_factor",
     "observed",
     "score",
     "signal_strength",
     "symbol"
    ],
    "properties": {
     "grade": {
      "type": "string"
     },
     "score": {
      "type": "number"
     },
     "symbol": {
      "type": "string"
     },
     "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"
       },
       "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"
     }
    }
   }
  },
  "receipt": {
   "type": "string"
  },
  "disclaimer": {
   "type": "string"
  },
  "pick_count": {
   "type": "number"
  },
  "publication": {
   "type": "string"
  },
  "operator_position_disclosure": {
   "type": "string"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/scalpstream-crypto-scalp-feed-571828ef/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)
