# Octodamus NYSE Tech Regulatory Signal

> Octodamus NYSE Tech Regulatory Signal 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-14).

Returns a pay-per-call regulatory trading signal (BUY/SELL/HOLD, BULLISH/BEARISH/NEUTRAL) for NYSE tech stocks, including BTC trend, fear/greed index, and Polymarket edge data.

## Facts

- Endpoint: GET https://api.octodamus.com/v2/nyse_tech/regulatory
- Price: $0.35/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-tech-regulatory-signal-c8286939
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_-BLbouW0oMeizinuPhf6c

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-regulatory-signal-c8286939
```

Example prompt: What's the current Octodamus NYSE tech regulatory signal — am I looking at a BUY, SELL, or HOLD right now, and what's the confidence level and fear/greed reading behind it?

## When to prefer this

Choose this endpoint when you need a consolidated, opinionated regulatory trading signal for NYSE tech stocks that combines sentiment, BTC trend correlation, fear/greed, and Polymarket edge in a single pay-per-call response — especially useful for agents making trading decisions or generating market commentary without building their own signal aggregation pipeline.

## Known failure modes

- Missing or invalid PAYMENT-SIGNATURE header results in 402 Payment Required
- Expired or already-used EIP-3009 payment signature is rejected
- Insufficient USDC balance on Base mainnet causes payment failure
- Network or upstream data source outage may cause 503 or timeout
- Malformed request (wrong HTTP method) returns 400 or 405

## How this service works

Octodamus NYSE Tech Regulatory -- pay-per-call x402 endpoint on Base. Preview: https://api.octodamus.com/v2/nyse_tech/regulatory/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 natural-language reasoning string, a confidence score between 0 and 1, a fear/greed index between 0 and 100, and a Polymarket edge object with relevant 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"
    }
   }
  }
 }
}
```

## More

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