# Octodamus NYSE MacroMind Signal

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

Returns a BUY/SELL/HOLD trading action signal with bullish/bearish/neutral sentiment, BTC trend, confidence score, fear/greed index, and AI reasoning for NYSE macro conditions

## Facts

- Endpoint: GET https://api.octodamus.com/v2/nyse_macromind/signal
- Price: $0.25/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/octodamus-nyse-macromind-signal-44ad4f89
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_eJa01n9G6QTBlQ4WsLyQ8

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-macromind-signal-44ad4f89
```

Example prompt: What's the current NYSE MacroMind signal from Octodamus — should I be buying, selling, or holding right now, and how confident is it? Include the fear/greed reading and BTC trend too.

## When to prefer this

Use this endpoint when an agent needs a holistic, AI-synthesized NYSE macro trading signal combining sentiment, BTC correlation, fear/greed, and Polymarket data in a single pay-per-call call. Prefer this over raw data feeds when you want an opinionated BUY/SELL/HOLD recommendation with reasoning rather than raw price data.

## Known failure modes

- Missing or invalid PAYMENT-SIGNATURE header returns 402 Payment Required
- Expired or already-used payment signature returns 402 or 401
- Insufficient USDC balance on Base mainnet causes payment failure
- Network congestion on Base chain delays payment verification
- API returns 503 if signal computation is temporarily unavailable

## How this service works

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

## Output

A JSON object containing: action (BUY/SELL/HOLD), signal (BULLISH/BEARISH/NEUTRAL), btc_trend (UP/DOWN/SIDEWAYS), confidence (0–1), fear_greed (0–100), polymarket_edge object, and a natural-language reasoning string explaining the signal.

## 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-macromind-signal-44ad4f89/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)
