# ST0x Tokenized Equities — Premium/Discount by Ticker

> ST0x Tokenized Equities — Premium/Discount by Ticker is a paid API for AI agents from x402-accelerometer-feed.fly.dev, paid per call via x402, $0.02/call, status unknown (last checked 2026-09-18).

Returns the live premium or discount (in basis points) of a tokenized stock on Base vs its real-world exchange price, using the deepest USDC pool and last Raindex fill, corrected for ERC-4626 wrapper rate.

## Facts

- Endpoint: GET https://x402-accelerometer-feed.fly.dev/tokenized-equities/st0x/premium/:ticker
- Price: $0.02/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-18
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/st0x-tokenized-equities-premium-discount-by-ticker-36e049b0
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_9NkBCp7W9Gv6jtpOgBtPn

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 st0x-tokenized-equities-premium-discount-by-ticker-36e049b0
```

Example prompt: Is the ST0x tokenized NVDA on Base trading at a premium or discount right now? Give me the basis points spread and a quick read on the situation.

## When to prefer this

Use this endpoint when you specifically need to compare a Base-chain ST0x tokenized equity (ERC-4626 wrapped stocks like wtNVDA, wtAAPL) against its real-world exchange price in basis points, with full data provenance including pool depth, Raindex fills, and wrapper rate correction. Prefer this over generic DEX price APIs when you need the full premium/discount picture with cross-issuer comparison and human-readable interpretation. It is the right tool for arbitrage detection, NAV reconciliation, and peg health monitoring for tokenized equities on Base.

## Known failure modes

- Unknown ticker or token symbol returns 404 with no charge
- Stale underlying price if exchange is closed or data source delayed — age_s field indicates staleness
- No USDC pool found for obscure or illiquid tokenized tokens — best_usdc_pool may be null
- Raindex last trade may be null if no recent fills
- ERC-4626 wrapper rate unavailable makes rate-adjusted premium null
- Network or provider outage on fly.dev may cause 5xx errors

## How this service works

Use this when the question is whether an ST0x tokenized stock on Base trades above or below the real share: send a ticker (NVDA, wtAAPL, FGI) and get the premium/discount in basis points from the deepest USDC pool (live) and the last Raindex fill vs the exchange quote, corrected for the ERC-4626 wrapper rate, with market session, age of every leg, pool depth, any cross-issuer pool (wtNVDA vs Coinbase NVDAc), and a one-sentence read. Unknown ticker -> 404, no charge.

## Output

Returns a JSON object with: the premium/discount in basis points from the deepest USDC pool and last Raindex fill (both raw and ERC-4626 wrapper-rate-adjusted), the underlying exchange price with source, age, session, and leg metadata, best on-chain USDC pool details (address, depth, price), cross-issuer pool comparisons (e.g. wtNVDA vs NVDAc), last Raindex trade details, token metadata (symbol, ISIN, wrapped/unwrapped address, wrapper rate), market session status, and a one-sentence human-readable read. Returns 404 for unknown tickers at no charge.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET"
     ],
     "type": "string"
    },
    "pathParams": {
     "type": "object",
     "required": [
      "ticker"
     ],
     "properties": {
      "ticker": {
       "type": "string",
       "description": "stock ticker (NVDA), ST0x symbol (wtNVDA / tNVDA), or the token's Base address"
      }
     }
    },
    "queryParams": {
     "type": "object",
     "properties": {}
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "properties": {
      "kind": {
       "type": "string"
      },
      "read": {
       "type": "string"
      },
      "as_of": {
       "type": "string"
      },
      "chain": {
       "type": "string"
      },
      "token": {
       "type": "object",
       "properties": {
        "isin": {
         "type": [
          "string",
          "null"
         ]
        },
        "name": {
         "type": "string"
        },
        "symbol": {
         "type": "string"
        },
        "ticker": {
         "type": "string"
        },
        "wrapped": {
         "type": "string"
        },
        "unwrapped": {
         "type": [
          "string",
          "null"
         ]
        },
        "wrapper_rate": {
         "type": [
          "number",
          "null"
         ]
        }
       }
      },
      "sources": {
       "type": "object"
      },
      "on_chain": {
       "type": "object",
       "properties": {
        "best_usdc_pool": {
         "type": [
          "object",
          "null"
         ]
        },
        "cross_issuer_pools": {
         "type": "array"
        },
        "raindex_last_trade": {
         "type": [
          "object",
          "null"
         ]
        }
       }
      },
      "disclaimer": {
       "type": "string"
      },
      "underlying": {
       "type": [
        "object",
        "null"
       ],
       "properties": {
        "age_s": {
         "type": "number"
        },
        "price": {
         "type": "number"
        },
        "source": {
         "type": "string
… (truncated)
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/st0x-tokenized-equities-premium-discount-by-ticker-36e049b0/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from x402-accelerometer-feed.fly.dev](https://www.zero.xyz/host/x402-accelerometer-feed.fly.dev/llms.txt)
