# Octodamus Macro Regime Brief

> Octodamus Macro Regime Brief 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 a macro market regime signal with BUY/SELL/HOLD action, BULLISH/BEARISH/NEUTRAL sentiment, BTC trend direction, fear/greed score, confidence level, and AI reasoning — paid per-call via x402 USDC on Base.

## Facts

- Endpoint: GET https://api.octodamus.com/v2/ben/bens_macro_regime_brief
- 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-macro-regime-brief-a4d91d60
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_RVT-iRmqJZvtJgexuQiyR

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-macro-regime-brief-a4d91d60
```

Example prompt: What's the current macro regime brief from Octodamus — am I looking at a buy, sell, or hold signal, and is it bullish or bearish overall with the current BTC trend and fear/greed reading?

## When to prefer this

Use this endpoint when you need a synthesized, opinionated macro regime signal combining BTC trend, fear/greed, Polymarket data, and AI reasoning into a single BUY/SELL/HOLD + BULLISH/BEARISH/NEUTRAL verdict. Prefer over raw data feeds when you want an interpreted signal with confidence scoring and narrative reasoning. Ideal for agents making portfolio or positioning decisions that need a structured, machine-readable macro stance with human-readable justification.

## Known failure modes

- Missing or invalid PAYMENT-SIGNATURE header returns 402 Payment Required
- Expired or already-used EIP-3009 payment signature returns auth error
- Insufficient USDC balance or wrong network (non-Base) causes payment failure
- Service downtime or data feed unavailability may cause 5xx errors

## How this service works

Octodamus Macro Regime Brief -- pay-per-call x402 endpoint on Base. Preview: https://api.octodamus.com/v2/ben/bens_macro_regime_brief/preview

## Output

Returns a JSON object with: action enum (BUY/SELL/HOLD), signal enum (BULLISH/BEARISH/NEUTRAL), btc_trend enum (UP/DOWN/SIDEWAYS), a confidence score between 0 and 1, a fear_greed score from 0-100, a human-readable reasoning string explaining the regime assessment, and a polymarket_edge object with prediction market data.

## 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"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "action": "BUY",
  "signal": "BULLISH",
  "btc_trend": "UP",
  "reasoning": "Oracle 9/11 consensus bullish. Fear & Greed neutral-greed zone.",
  "confidence": 0.78,
  "fear_greed": 62,
  "polymarket_edge": {
   "ev": 0.14,
   "market": "BTC above 90k"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/octodamus-macro-regime-brief-a4d91d60/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)
