# Octodamus NYSE Tech Tokenization Signal

> Octodamus NYSE Tech Tokenization Signal 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 trading action signal (BUY/SELL/HOLD), market sentiment, BTC trend, fear/greed index, and reasoning for NYSE tech tokenized equities

## Facts

- Endpoint: GET https://api.octodamus.com/v2/nyse_tech/tokenization
- 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-nyse-tech-tokenization-signal-a853a784
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_H_r-reGuC7RUpeuZD4Ocr

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-tech-tokenization-signal-a853a784
```

Example prompt: What's the current Octodamus signal for NYSE tech tokenized equities — should I be buying, selling, or holding, and how confident is the model?

## When to prefer this

Choose this endpoint when you need a unified, opinionated BUY/SELL/HOLD signal specifically for NYSE tech tokenized equities, combining crypto sentiment (BTC trend, fear/greed, Polymarket) with traditional equity signals into one pay-per-call response. Prefer it over general market data APIs when you want synthesized reasoning rather than raw price data, and over other Octodamus endpoints when the focus is specifically on tokenized NYSE tech stocks rather than derivatives guides, DTC pipelines, or BTC contrarian alerts.

## 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 on Base mainnet causes payment failure
- Network congestion on Base may delay signature verification
- API may return stale data if upstream market feeds are delayed

## How this service works

Octodamus NYSE Tech Tokenization -- pay-per-call x402 endpoint on Base. Preview: https://api.octodamus.com/v2/nyse_tech/tokenization/preview

## Output

Returns a structured JSON object containing: action enum (BUY/SELL/HOLD), signal enum (BULLISH/BEARISH/NEUTRAL), BTC trend direction (UP/DOWN/SIDEWAYS), a confidence score between 0 and 1, a fear/greed index score (0-100), a natural language reasoning string explaining the signal, and a Polymarket edge object with additional probabilistic 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"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/octodamus-nyse-tech-tokenization-signal-a853a784/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)
