The Urizen API.
Everything Urizen Alpha runs on is a public, keyless, CORS-open endpoint underurizenfund.com. Read the market, quote a trade, or plug into the fund — from any agent.
Your quant trading partner, non-custodial by design
Urizen Alpha is an AI equity-research agent for Robinhood Chain — research companies, analyse charts, compare businesses, explain earnings, build strategies and trade, in one conversation. Try it instantly with Urizen Free Mode (no key, a free model), or bring your own Anthropic / OpenAI / OpenRouter key for the top models.
Two things never touch a server: your intelligence key and your wallet. Your key lives in your browser and calls your provider directly; trades are quoted server-side but signed by you.
Every data endpoint below returns JSON with open CORS, so an external agent (Bankr, an MCP client, your own bot) can read Urizen's live state cross-origin. The trade quote is same-origin only.
Market data
/api/quant/ohlcReal daily OHLC for a tokenized-equity underlying, with everything you need to compute technicals (RSI, volatility, Sharpe, drawdown, moving averages).
| symbol | ticker, e.g. NVDA (required) |
| range | 1m · 3m · 6m · 1y · 2y (default 6m) |
{
"symbol": "NVDA", "currency": "USD",
"price": 208.66, "prevClose": 196.2, "range": "6m",
"candles": [ { "t": 1730000000, "o": 132.1, "h": 135.4, "l": 131.0, "c": 134.8, "v": 41230000 }, … ]
}Paid analysis (x402)
/api/x402/analyzeA synthesized equity thesis from a four-analyst panel (technical, fundamental, macro & catalyst, news-flow & on-chain) plus a portfolio-manager synthesis, over real data. Payable per call via x402 (HTTP 402, USDC on Base, EIP-3009 — gasless for the payer). Unpaid requests return the 402 challenge; the manifest (no ticker) returns pricing. Try it at /x402.
| ticker | stock symbol e.g. NVDA, or MARKET for whole-market sentiment (required) |
| depth | snapshot ($0.01) · standard ($0.10) · deep ($0.50), default deep |
{
"ticker": "NVDA", "name": "NVIDIA", "depth": "deep",
"data": { "technicals": "…", "fundamentals": "…", "ratings": "…" },
"agents": { "technical": "…", "fundamental": "…", "macro": "…", "flow": "…" },
"thesis": "CALL — … THE CASE — … THE BEAR CASE — … WHAT WOULD CHANGE MY MIND — …",
"paid": true
}Trading
/api/rialto/quoteBest-route swap quote for tokenized stocks on Robinhood Chain (id 4663), returning a ready-to-sign transaction. The routing key is attached server-side; never exposed to the browser. Non-custodial — the user sends the tx from their own wallet. Cash leg is USDG.
| sell_token | symbol or address (required) |
| buy_token | symbol or address (required) |
| sell_amount | human decimal, e.g. 100 (required) |
| taker | recipient wallet (required) |
| slippage_bps | max slippage, default 100 (1%) |
{
"quote_id": "…", "chain_id": 4663,
"tx": { "to": "0x…", "data": "0x…", "value": "0" },
"sell_amount": "100000000", "buy_amount": "…", "min_buy_amount": "…",
"route": { "legs": [ … ] }
}The fund ($URI)
/api/fund/statsLive $URI market data on Robinhood Chain.
{
"symbol": "URI", "name": "Urizen", "chainId": 4663,
"priceUsd": …, "marketCapUsd": …, "fdvUsd": …, "liquidityUsd": …,
"volume24hUsd": …, "change24hPct": …, "holders": …, "totalSupply": …
}/api/fund/bookThe fund's live on-chain positions (tokenized equities + crypto) and NAV.
{
"wallet": "0x…", "navUsd": …, "positionsCount": …,
"positions": [ { "symbol": "NVDA", "name": "NVIDIA • Robinhood Token",
"kind": "equity", "amount": …, "valueUsd": …, "address": "0x…" }, … ],
"updatedAt": "…"
}/api/fund/strategiesThe autonomous mandates the fund runs, 24/7.
{ "count": …, "strategies": [
{ "id": "mag7-dca", "name": "…", "kind": "DCA", "status": "live",
"summary": "…", "targets": ["NVDA","AAPL",…], "cadence": "Every 6h · 24/7", "allocationPct": 34 }, …
] }/api/fund/tradesThe fund's on-chain execution feed.
{ "count": …, "trades": [ … ], "updatedAt": "…" }/api/fund/mirrorCopy-trade the fund: live target weights of its real book.
{ "weights": [ { "symbol": "NVDA", "weightPct": … }, … ] }Skills
Both surfaces ship as downloadable agent skills — one for equity research (Urizen Alpha), one for the fund. Grab them on the skills page.