# Octodamus NYSE Tech DTC Monitor

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

Monitors Depository Trust Company (DTC) data and settlement activity for NYSE-listed tech stocks by ticker symbol

## Facts

- Endpoint: GET https://api.octodamus.com/v2/nyse_tech/dtc_monitor
- Price: $0.25/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-dtc-monitor-627a45ed
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_lNMU8tsqhV2Ja9e01Pk1A

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-monitor-627a45ed
```

Example prompt: What does Octodamus show for DTC settlement activity on NVDA right now — any unusual fail-to-deliver or short squeeze signals?

## When to prefer this

Use this endpoint when you need DTC-specific settlement and delivery monitoring data for NYSE-listed technology stocks, particularly when investigating short squeeze potential, fail-to-deliver spikes, or unusual settlement activity. Prefer over generic market data APIs when DTC-specific intelligence is required.

## Known failure modes

- Invalid or unrecognized ticker symbol returns error
- Non-NYSE or non-tech tickers may return no data or partial results
- Rate limit exceeded (500 free req/day) returns 429 or payment required
- Missing ticker parameter results in bad request error
- Payment failure for $0.25 USDC per call via x402 blocks access

## How this service works

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

## Output

Returns DTC monitoring data for the specified NYSE tech ticker, potentially including settlement failure rates, delivery obligation data, and related market signals derived from Octodamus's 27-feed AI oracle system.

## Example request

```json
{
 "ticker": "AAPL"
}
```

## 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-monitor-627a45ed/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)
