# ST0x Tokenized Equities Issuer Registry

> ST0x Tokenized Equities Issuer Registry is a paid API for AI agents from x402-accelerometer-feed.fly.dev, paid per call via x402, $0.001/call, status unknown (last checked 2026-09-18).

Returns the complete issuer registry of ST0x tokenized equity contracts (wrapped ERC-4626 and unwrapped ERC-20) across four chains, keyed by stock ticker, including ISIN, TradingView symbol, receipt vault, and listed flag.

## Facts

- Endpoint: GET https://x402-accelerometer-feed.fly.dev/tokenized-equities/st0x/registry
- Price: $0.001/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-issuer-registry-36b6f528
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_mE7N_cRoxEDpnnJ1_MbeX

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-issuer-registry-36b6f528
```

Example prompt: What's the on-chain contract address for the ST0x tokenized NVIDIA stock — both the wrapped wtNVDA ERC-4626 and unwrapped tNVDA ERC-20 versions — on Base?

## When to prefer this

Use this endpoint when you need authoritative, multi-chain contract addresses for ST0x tokenized equities — especially to resolve a stock ticker to its on-chain token, verify a contract's legitimacy, retrieve ISIN or TradingView metadata, or enumerate all listed tokenized shares. Prefer this over general token lookup services when the specific concern is ST0x-issued tokenized stocks across Base, Ethereum, HyperEVM, or Robinhood Chain.

## Known failure modes

- Registry temporarily unavailable due to upstream issuer source refresh failure
- Stale data if hourly refresh has not yet completed
- Ticker present in registry but unwrapped/receipt fields are null for some chains
- Network timeout reaching the fly.dev host
- Payment not accepted if x402 micropayment fails

## How this service works

Use this when you need to resolve a stock ticker to its ST0x on-chain token, or check whether a contract is a genuine ST0x tokenized share: the complete issuer registry for all 54-56 names on each of four chains (Base, Ethereum, HyperEVM, Robinhood Chain) — wrapped (wtNVDA, ERC-4626) and unwrapped (tNVDA, ERC-20) addresses, the ERC-1155 receipt vault, ISIN, TradingView symbol, listed flag. Versioned from the issuer's own registry; refreshed hourly.

## Output

A JSON object keyed by chain (Base, Ethereum, HyperEVM, Robinhood Chain), each containing a count and an array of token entries. Each entry includes ticker, name, ISIN, wrapped ERC-4626 address, unwrapped ERC-20 address, ERC-1155 receipt vault address, TradingView symbol, listed flag, and a legacy field. Also includes issuer name, source URL, as_of timestamp, and a disclaimer.

## 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"
    },
    "queryParams": {
     "type": "object",
     "properties": {}
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "properties": {
      "kind": {
       "type": "string"
      },
      "as_of": {
       "type": "string"
      },
      "chains": {
       "type": "object",
       "additionalProperties": {
        "type": "object",
        "properties": {
         "count": {
          "type": "number"
         },
         "tokens": {
          "type": "array",
          "items": {
           "type": "object",
           "properties": {
            "isin": {
             "type": [
              "string",
              "null"
             ]
            },
            "name": {
             "type": "string"
            },
            "legacy": {
             "type": [
              "string",
              "null"
             ]
            },
            "listed": {
             "type": [
              "boolean",
              "null"
             ]
            },
            "symbol": {
             "type": "string"
            },
            "ticker": {
             "type": "string"
            },
            "receipt": {
             "type": [
              "string",
              "null"
             ]
            },
            "wrapped": {
             "type": "string"
            },
            "unwrapped": {
             "type": [
              "string",
              "null"
             ]
            },
            "tradingview": {
             "type": [
              "string",
              "null"
             ]
            }
           }
          }
         },
         "updated": {
          "type": [
           "string",
           "null"
          ]
         },
         "chain_id": {
          "type": "number"
         }
        }
       }
      },
      "issuer": {
       "type": "string"
      },
      "source": {
       "type": "string"
      },
      "disclaimer": {
       "type": "string"
      }
     }
  
… (truncated)
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/st0x-tokenized-equities-issuer-registry-36b6f528/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)
