# Octodamus Equity Fair Value (After-Hours)

> Octodamus Equity Fair Value (After-Hours) is a paid API for AI agents from api.octodamus.com, paid per call via x402, $0.02/call, status unknown (last checked 2026-09-15).

Returns index-implied fair value estimates for tokenized equities (NVDA, TSLA, AAPL, SPY, etc.) while NYSE is closed, including reference index futures, assumed beta, and last-vs-fair premium.

## Facts

- Endpoint: GET https://api.octodamus.com/v2/equity/fair-value
- Price: $0.02/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/octodamus-equity-fair-value-after-hours-03cd0e26
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_oqCgRV7amAZ_uIezBZiuV

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-equity-fair-value-after-hours-03cd0e26
```

Example prompt: What's the index-implied fair value for NVDA right now? I'm looking at tokenized stock prices on Uniswap this weekend and want to know how much it's trading above or below fair value based on ES/NQ futures.

## When to prefer this

Use this endpoint when you need a quantitative, index-futures-implied fair value for a tokenized equity during hours when the NYSE is closed (nights, weekends, holidays) — especially when trading or evaluating tokenized stocks on DeFi platforms like Robinhood Chain, Arcus, or Uniswap where no live market price exists.

## Known failure modes

- Invalid or missing PAYMENT-SIGNATURE header returns 402 Payment Required
- Unsupported ticker symbol returns 400 or empty result
- Stale or unavailable futures data may reduce estimate accuracy
- Network or service downtime returns 5xx error

## How this service works

24/7 index-implied fair value for tokenized equities (NVDA/TSLA/AAPL/SPY/etc) while the NYSE is closed -- the reference a Robinhood Chain / Arcus / Uniswap tokenized-stock trader needs at night and on weekends. Returns regular close, reference index future (ES/NQ) + session move, assumed beta, fair-value estimate, and last-vs-fair premium. Every input exposed.

## Output

Returns the regular market close price, the reference index future (ES or NQ) and its current session move, the assumed beta for the ticker, the computed index-implied fair value, and the premium/discount of the last traded price versus that fair value — giving a full picture for after-hours tokenized equity trading decisions.

## 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-equity-fair-value-after-hours-03cd0e26/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)
