Documentation

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.

Start here

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.

Grounding

Market data

GET/api/quant/ohlc

Real daily OHLC for a tokenized-equity underlying, with everything you need to compute technicals (RSI, volatility, Sharpe, drawdown, moving averages).

symbolticker, e.g. NVDA (required)
range1m · 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 }, … ]
}
Pay per call

Paid analysis (x402)

GET/api/x402/analyze

A 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.

tickerstock symbol e.g. NVDA, or MARKET for whole-market sentiment (required)
depthsnapshot ($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
}
Act

Trading

GET/api/rialto/quote

Best-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_tokensymbol or address (required)
buy_tokensymbol or address (required)
sell_amounthuman decimal, e.g. 100 (required)
takerrecipient wallet (required)
slippage_bpsmax 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": [ … ] }
}
Allocate

The fund ($URI)

GET/api/fund/stats

Live $URI market data on Robinhood Chain.

{
  "symbol": "URI", "name": "Urizen", "chainId": 4663,
  "priceUsd": …, "marketCapUsd": …, "fdvUsd": …, "liquidityUsd": …,
  "volume24hUsd": …, "change24hPct": …, "holders": …, "totalSupply": …
}
GET/api/fund/book

The 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": "…"
}
GET/api/fund/strategies

The 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 }, …
] }
GET/api/fund/trades

The fund's on-chain execution feed.

{ "count": …, "trades": [ … ], "updatedAt": "…" }
GET/api/fund/mirror

Copy-trade the fund: live target weights of its real book.

{ "weights": [ { "symbol": "NVDA", "weightPct": … }, … ] }
Portable

Skills

Both surfaces ship as downloadable agent skills — one for equity research (Urizen Alpha), one for the fund. Grab them on the skills page.