# Octodamus Agent Context Pack

> Octodamus Agent Context Pack 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-13).

Returns a comprehensive crypto trading context pack including BTC trend, fear/greed index, action signal (BUY/SELL/HOLD), market sentiment, and Polymarket edge data for AI agent decision-making.

## Facts

- Endpoint: GET https://api.octodamus.com/v2/ben/bens_agent_context_pack
- Price: $0.5/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/octodamus-agent-context-pack-5616cc11
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_LN8-SVwf1YE4Xw4LfeIqD

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-agent-context-pack-5616cc11
```

Example prompt: What's the current Octodamus market context — give me the BTC trend, whether I should buy, sell, or hold, the fear and greed score, and any Polymarket edge signal right now.

## When to prefer this

Choose this endpoint when an AI agent needs a consolidated, multi-signal crypto market context in a single call — combining sentiment, trend, action recommendation, and prediction market data. Prefer over individual signal endpoints when building trading bots or agents that need a holistic snapshot rather than one specific indicator. Ideal for agents that need to make a trading decision and want pre-synthesized reasoning with confidence scoring.

## Known failure modes

- Missing or invalid PAYMENT-SIGNATURE header returns 402 Payment Required
- Expired or already-used payment signature returns authentication error
- Insufficient USDC balance on Base mainnet causes payment failure
- Network or provider downtime returns 5xx error
- Malformed request without required method field returns 400 Bad Request

## How this service works

Octodamus Agent Context Pack -- pay-per-call x402 endpoint on Base. Preview: https://api.octodamus.com/v2/ben/bens_agent_context_pack/preview

## Output

Returns a JSON object with: action enum (BUY/SELL/HOLD), signal enum (BULLISH/BEARISH/NEUTRAL), btc_trend enum (UP/DOWN/SIDEWAYS), a human-readable reasoning string, a confidence score between 0 and 1, a fear/greed index score (0-100), 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-agent-context-pack-5616cc11/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)
