# Octodamus Tokenized Equity Basis Signal

> Octodamus Tokenized Equity Basis Signal 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-14).

Returns the premium/discount of a tokenized stock's on-chain Uniswap price versus its index-implied fair value, providing an arbitrage signal for 24/7 tokenized equities.

## Facts

- Endpoint: GET https://api.octodamus.com/v2/equity/basis
- Price: $0.02/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/octodamus-tokenized-equity-basis-signal-4d8f7f2a
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_JM9eg1jUU1SRJUiXD7C9e

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-tokenized-equity-basis-signal-4d8f7f2a
```

Example prompt: Check the current basis signal for tokenized stocks on Robinhood Chain — I want to know if any are trading at a significant premium or discount to fair value right now, and whether the signal is PREMIUM, DISCOUNT, or FAIR.

## When to prefer this

Use this endpoint when you need a real-time arbitrage signal specifically for tokenized equities trading 24/7 on Uniswap (Robinhood Chain / Base), comparing on-chain price to index-implied fair value. Prefer this over generic crypto signal endpoints when the use case is tokenized stock basis trading rather than native crypto derivatives or sentiment signals.

## Known failure modes

- Invalid or missing x402 PAYMENT-SIGNATURE header returns 402 Payment Required
- No tokenized equity pairs available returns empty result set
- Stale on-chain data may affect fair value comparison accuracy
- Network congestion on Base mainnet may delay payment processing

## How this service works

Premium/discount of a tokenized stock's LIVE Robinhood Chain (Uniswap) price vs its index-implied fair value -- the pure arb signal for 24/7 tokenized equities. Returns on-chain price + venue + 24h volume, fair value, basis_pct, and a PREMIUM/DISCOUNT/FAIR signal. Scam/leveraged pairs filtered.

## Output

Returns the on-chain Uniswap price, trading venue, 24-hour volume, index-implied fair value, basis percentage (basis_pct), and a categorical signal (PREMIUM, DISCOUNT, or FAIR) for filtered tokenized equity pairs, excluding scam and leveraged pairs.

## 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-tokenized-equity-basis-signal-4d8f7f2a/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)
