# Octodamus NYSE MacroMind Yield Curve

> Octodamus NYSE MacroMind Yield Curve 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 AI-generated macro market signals derived from yield curve analysis, including BUY/SELL/HOLD action, bullish/bearish/neutral sentiment, BTC trend, fear/greed index, and trading confidence score

## Facts

- Endpoint: GET https://api.octodamus.com/v2/nyse_macromind/yield-curve
- 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-yield-curve-ca0d945c
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_DHVBe34mQTL_qZUSWaXij

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-yield-curve-ca0d945c
```

Example prompt: Pull the Octodamus MacroMind yield curve signal right now — I want to know whether it's saying BUY, SELL, or HOLD, what the BTC trend looks like, and how confident the model is.

## When to prefer this

Use this endpoint when you need a macro-level yield curve driven trading signal that synthesizes bond market data into actionable BUY/SELL/HOLD recommendations with BTC trend context. Prefer this over generic sentiment APIs when you want a structured, confidence-scored signal that also incorporates fear/greed and prediction market edge data in a single pay-per-call call.

## Known failure modes

- Missing or invalid PAYMENT-SIGNATURE header returns 402 Payment Required
- Insufficient USDC balance on Base mainnet causes payment failure
- Expired or replayed EIP-3009 payment signature rejected
- Network congestion on Base chain delays payment verification
- Service unavailability returns 5xx error

## How this service works

Octodamus NYSE MacroMind Yield Curve -- pay-per-call x402 endpoint on Base. Preview: https://api.octodamus.com/v2/nyse_macromind/yield-curve/preview

## Output

Returns a JSON object with: an action recommendation (BUY/SELL/HOLD), a market signal (BULLISH/BEARISH/NEUTRAL), a BTC trend direction (UP/DOWN/SIDEWAYS), a natural-language reasoning string explaining the signal, a confidence score between 0 and 1, a fear/greed index value from 0-100, and a polymarket_edge object with additional prediction market context.

## 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-yield-curve-ca0d945c/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)
