Premium/discount of a tokenized stock's LIVE Robinhood Chain (Uniswap) price vs its index-
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.
20000 (raw units)
price
2
calls / 30d
2
unique payers
2026-08-30
updated
Provider
api.octodamus.com · discovered, not yet claimed by its owner
Payment (x402 accepts[])
[
{
"scheme": "exact",
"network": "eip155:8453",
"payTo": "0x5c6B3a3dAe296d3cef50fef96afC73410959a6Db",
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"amount": "20000",
"maxTimeoutSeconds": 300
}
]Output schema
{
"bazaar": {
"category": "trading",
"discoverable": true,
"info": {
"input": {
"headers": {
"PAYMENT-SIGNATURE": "x402 EIP-3009 USDC payment (Base mainnet)"
},
"method": "GET",
"type": "http"
},
"output": {
"example": {
"basis_pct": 0.59,
"fair_value": 204.6,
"onchain": {
"price": 205.81,
"venue": "robinhood/uniswap",
"volume_24h_usd": 120750
},
"signal": "PREMIUM",
"ticker": "NVDA"
},
"type": "json"
}
},
"name": "Octodamus Equity Basis (tokenized arb)",
"schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"properties": {
"headers": {
"properties": {
"PAYMENT-SIGNATURE": {
"description": "x402 EIP-3009 USDC payment signature (Base mainnet)",
"type": "string"
}
},
"required": [
"PAYMENT-SIGNATURE"
],
"type": "object"
},
"method": {
"const": "GET",
"type": "string"
}
},
"required": [
"method"
],
"type": "object"
},
"output": {
"properties": {
"action": {
"enum": [
"BUY",
"SELL",
"HOLD"
],
"type": "string"
},
"btc_trend": {
"enum": [
"UP",
"DOWN",
"SIDEWAYS"
],
"type": "string"
},
"confidence": {
"maximum": 1,
"minimum": 0,
"type": "number"
},
"fear_greed": {
"maximum": 100,
"minimum": 0,
"type": "number"
},
"polymarket_edge": {
"type": "object"
},
"reasoning": {
"type": "string"
},
"signal": {
"enum": [
"BULLISH",
"BEARISH",
"NEUTRAL"
],
"type": "string"
}
},
"type": "object"
}
},
"type": "object"
},
"tags": [
"tokenized equity",
"basis",
"arbitrage",
"premium discount",
"robinhood chain",
"uniswap",
"NVDA",
"TSLA",
"24/7 stocks",
"Base USDC"
]
}
}Use it
curl
curl "https://api.octodamus.com/v2/equity/basis" # -> 402 Payment Required, accepts[] lists how to pay # retry with a PAYMENT-SIGNATURE (or PAYMENT header) once paid
JavaScript
const res = await fetch("https://api.octodamus.com/v2/equity/basis");
if (res.status === 402) {
const { accepts } = await res.json();
// pay one of accepts[] via an x402 client, then retry with the payment header
}Python
import httpx
res = httpx.get("https://api.octodamus.com/v2/equity/basis")
if res.status_code == 402:
accepts = res.json()["accepts"]
# pay one of accepts[] via an x402 client, then retry with the payment headerMachine-readable
Everything on this page is also available as clean JSON at /resources/6518.json, and this resource appears in /discovery/resources and /discovery/search.