# Octodamus NYSE Stock Oracle Signal

> Octodamus NYSE Stock Oracle Signal is a paid API for AI agents from api.octodamus.com, paid per call via x402, $0.5/call, status unknown (last checked 2026-09-15).

Returns AI-generated trading signals and market intelligence for a given NYSE equity ticker symbol

## Facts

- Endpoint: GET https://api.octodamus.com/v2/nyse_stockoracle/signal
- Price: $0.5/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/octodamus-nyse-stock-oracle-signal-0acfcea7
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_gV0shuW-S_2zFckdWsWPd

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 octodamus-nyse-stock-oracle-signal-0acfcea7
```

Example prompt: What is the Octodamus AI oracle signal for NVDA right now — is it a buy, sell, or hold?

## When to prefer this

Use this endpoint when you need an AI-synthesized directional trading signal for a specific NYSE equity, combining multiple market intelligence sources (macro regime, fear & greed, congressional trading, etc.) into a single actionable score. Prefer this over raw price data APIs when you want pre-analyzed, opinionated market signals rather than raw OHLCV data.

## Known failure modes

- Invalid or unsupported ticker symbol returns an error or empty signal
- Rate limit exceeded (500 req/day on free tier) returns 429 or payment-required response
- Non-NYSE or unlisted ticker may return no data
- Payment not provided or insufficient for paid tier returns 402
- API downtime or data feed disruption returns 5xx error

## How this service works

Octodamus NYSE StockOracle Signal -- pay-per-call x402 endpoint on Base. Preview: https://api.octodamus.com/v2/nyse_stockoracle/signal/preview

## Output

An AI-generated trading signal for the requested NYSE stock ticker, potentially including directional signal (buy/sell/hold), confidence score, macro regime context, and supporting data from Octodamus's 27 data feeds including fear & greed index and congressional trading activity.

## Example request

```json
{
 "ticker": "AAPL"
}
```

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "method"
   ],
   "properties": {
    "method": {
     "type": "string",
     "const": "GET"
    },
    "headers": {
     "type": "object",
     "required": [
      "PAYMENT-SIGNATURE"
     ],
     "properties": {
      "PAYMENT-SIGNATURE": {
       "type": "string",
       "description": "x402 EIP-3009 USDC payment signature (Base mainnet)"
      }
     }
    }
   }
  },
  "output": {
   "type": "object",
   "properties": {
    "action": {
     "enum": [
      "BUY",
      "SELL",
      "HOLD"
     ],
     "type": "string"
    },
    "signal": {
     "enum": [
      "BULLISH",
      "BEARISH",
      "NEUTRAL"
     ],
     "type": "string"
    },
    "btc_trend": {
     "enum": [
      "UP",
      "DOWN",
      "SIDEWAYS"
     ],
     "type": "string"
    },
    "reasoning": {
     "type": "string"
    },
    "confidence": {
     "type": "number",
     "maximum": 1,
     "minimum": 0
    },
    "fear_greed": {
     "type": "number",
     "maximum": 100,
     "minimum": 0
    },
    "polymarket_edge": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/octodamus-nyse-stock-oracle-signal-0acfcea7/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.octodamus.com](https://www.zero.xyz/host/api.octodamus.com/llms.txt)
