# Octodamus BTC Contrarian Alert

> Octodamus BTC Contrarian Alert is a paid API for AI agents from api.octodamus.com, paid per call via x402, $0.35/call, status unknown (last checked 2026-09-13).

Returns a contrarian trading signal (BUY/SELL/HOLD) for Bitcoin based on fear/greed divergence, market sentiment, and Polymarket data

## Facts

- Endpoint: GET https://api.octodamus.com/v2/ben/bens_btc_contrarian_alert
- Price: $0.35/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/octodamus-btc-contrarian-alert-41001154
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_JnokFFCS12d97mXp8ER-K

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-btc-contrarian-alert-41001154
```

Example prompt: Give me the current Octodamus contrarian Bitcoin alert — am I looking at a BUY, SELL, or HOLD signal, and what's the fear/greed reading behind it?

## When to prefer this

Use this endpoint when you need a structured, pay-per-call contrarian Bitcoin trading signal that combines fear/greed sentiment data with Polymarket prediction market positioning and outputs an actionable BUY/SELL/HOLD recommendation. Prefer over generic sentiment APIs when you specifically want a contrarian interpretation (not momentum-following) of current BTC market conditions with confidence scoring.

## Known failure modes

- Missing or invalid PAYMENT-SIGNATURE header returns 402 Payment Required
- Expired or replayed payment signature returns 402
- Network or data feed outage may return 503 Service Unavailable
- Malformed request returns 400 Bad Request

## How this service works

Octodamus BTC Contrarian Alert -- pay-per-call x402 endpoint on Base. Preview: https://api.octodamus.com/v2/ben/bens_btc_contrarian_alert/preview

## Output

Returns a JSON object with an action enum (BUY/SELL/HOLD), a signal enum (BULLISH/BEARISH/NEUTRAL), a BTC trend direction (UP/DOWN/SIDEWAYS), a plain-English reasoning string, a confidence score between 0 and 1, a fear/greed index score (0-100), and a Polymarket edge object indicating prediction market positioning.

## 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-btc-contrarian-alert-41001154/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)
