# Octodamus NYSE Tech Chainlink Lead Signals

> Octodamus NYSE Tech Chainlink Lead Signals 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-14).

Returns Chainlink-informed lead trading signals (BUY/SELL/HOLD) for NYSE tech stocks, incorporating BTC trend, fear/greed index, and Polymarket edge data.

## Facts

- Endpoint: GET https://api.octodamus.com/v2/nyse_tech/chainlink_lead_signals
- Price: $0.5/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-chainlink-lead-signals-cf25c553
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_gy9MhL6OJezmp-a6bL7OU

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-chainlink-lead-signals-cf25c553
```

Example prompt: What's the current Octodamus Chainlink lead signal for NYSE tech — should I be buying, selling, or holding, and how confident is it? Also tell me the BTC trend and fear/greed index reading.

## When to prefer this

Use this endpoint when you need a synthesized, on-chain-informed trading signal specifically for NYSE tech equities that combines Chainlink oracle data, BTC macro trend, fear/greed sentiment, and Polymarket prediction market edge into a single actionable recommendation. Prefer this over generic sentiment endpoints when you want a concrete BUY/SELL/HOLD action with confidence scoring and multi-factor reasoning.

## Known failure modes

- Missing or invalid PAYMENT-SIGNATURE header returns 402 Payment Required
- Expired or already-used x402 EIP-3009 payment signature returns authentication error
- Insufficient USDC balance on Base mainnet prevents payment processing
- Upstream data unavailability may cause degraded or stale signals
- Network issues on Base mainnet may delay or fail payment validation

## How this service works

Octodamus NYSE Tech Chainlink Lead Signals -- pay-per-call x402 endpoint on Base. Preview: https://api.octodamus.com/v2/nyse_tech/chainlink_lead_signals/preview

## Output

Returns a structured JSON object with: an action enum (BUY/SELL/HOLD), a signal sentiment (BULLISH/BEARISH/NEUTRAL), BTC trend direction (UP/DOWN/SIDEWAYS), a confidence score between 0 and 1, a fear/greed index value (0-100), a Polymarket edge object with relevant prediction market data, and a human-readable reasoning string explaining the signal.

## 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-chainlink-lead-signals-cf25c553/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)
