# Octodamus NYSE Tech DTC Pipeline Subscribe

> Octodamus NYSE Tech DTC Pipeline Subscribe is a paid API for AI agents from api.octodamus.com, paid per call via x402, $2/call, status unknown (last checked 2026-09-14).

Subscribes to the DTC (Depository Trust Company) pipeline data feed for NYSE technology sector equities, providing AI-driven market intelligence signals for specified tickers.

## Facts

- Endpoint: GET https://api.octodamus.com/v2/nyse_tech/dtc_pipeline/subscribe
- Price: $2/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-dtc-pipeline-subscribe-6299df59
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_Zy_4EkbCrYbWF8IOvcccA

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-dtc-pipeline-subscribe-6299df59
```

Example prompt: Pull the DTC pipeline data from Octodamus for AAPL, MSFT, and NVDA — I want to see the latest settlement and institutional trade flow signals for those NYSE tech names.

## When to prefer this

Use this endpoint when you need DTC (Depository Trust Company) pipeline-specific signals for NYSE technology sector equities by ticker symbol. Prefer this over generic market data APIs when you need Octodamus's AI oracle layer applied to settlement and institutional flow data specifically for tech stocks. Best for agents monitoring short-term institutional activity or settlement anomalies in the tech sector.

## Known failure modes

- Invalid or unrecognized ticker symbols returns empty or error response
- Tickers outside NYSE tech universe may return no data
- Rate limit exceeded beyond 500 req/day free tier returns 429
- Payment not processed (x402 protocol) returns 402 Payment Required
- Missing tickers parameter may return malformed response

## How this service works

Octodamus NYSE Tech DTC Pipeline Subscribe -- pay-per-call x402 endpoint on Base. Preview: https://api.octodamus.com/v2/nyse_tech/dtc_pipeline/subscribe/preview

## Output

Returns DTC pipeline market intelligence data for the specified NYSE technology sector tickers, including settlement flow signals, institutional activity indicators, and AI-driven market oracle outputs derived from Octodamus's 27 data feeds.

## 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-dtc-pipeline-subscribe-6299df59/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)
