Trade tokenized exposure to iconic equities, 24/7
Access a curated market of asset‑backed stock tokens with institutional‑grade UX. Black, minimal, and built for the modern capital stack.
Featured Stocks
Tokenized exposures to renowned equities. Prices update in real time.
Buy tokens
Select a tokenized stock to proceed. Logos auto‑loaded; fallback shown if unavailable.
Coming soon
These tokenized stocks are under integration and will be listed shortly.
How it works
Simple, compliant primitives bridging off‑chain equities to on‑chain markets.
Asset wrapping
Equity exposure is wrapped into on‑chain tokens via licensed custodians and oracles.
24/7 trading
Continuous liquidity with transparent settlement, programmable risk controls, and instant transfers.
Open access
Everyone can participate. No account tiers — permissionless by design.
Oracles & pricing
Trusted data feeds consolidate venue quotes; deviations trigger controls and pausable states.
Mint / Redeem
On‑chain minting against verified deposits; redemption settles to brokerage or fiat rails.
Audits & reporting
Independent attestations on reserves, chain proofs, and monthly transparency reports.
Join
Open participation. Connect your wallet and set your trading preferences.
Funding
Wire or brokerage transfer to custodian; wallet is bound to verified account.
Mint
Tokens are issued 1:1 against reserved exposure. Contract gates reflect constraints.
Trade
24/7 secondary trading. Prices driven by oracles and pool inventory (AMM/orderbook).
Redeem
Burn tokens to redeem underlying; settlement via custodian and linked brokerage.
Reports
Periodic attestations, chain proofs, and position statements published to docs.
API
Access market data and submit simulated orders. Real trading APIs are under development.
$ GET https://api.aureq.dev/v1/quotes?symbol=NVDA
$ curl -s "https://api.aureq.dev/v1/quotes?symbol=NVDA" | jq
{
"symbol": "NVDA",
"price": 956.11,
"changePercent": 0.84,
"updatedAt": "2025-09-23T08:00:00Z"
}
// Fetch a quote const res = await fetch('https://api.aureq.dev/v1/quotes?symbol=AAPL'); const data = await res.json(); console.log(data.price); // Simulated order (testnet) await fetch('https://api.aureq.dev/v1/orders', { method: 'POST', headers: { 'Content-Type': 'application/json' }, body: JSON.stringify({ symbol: 'AAPL', side: 'buy', qty: 10 }) });
Endpoints
symbol
(e.g., AAPL)symbols
(comma‑separated)$ GET https://api.aureq.dev/v1/quotes/batch?symbols=AAPL,NVDA,MSFT
{ symbol, side, qty }
page
, limit
.{ type: "subscribe", symbols: ["AAPL","NVDA"] }
// Browser example const ws = new WebSocket('wss://api.aureq.dev/stream'); ws.onopen = () => ws.send(JSON.stringify({ type: 'subscribe', symbols: ['AAPL','NVDA'] })); ws.onmessage = (e) => console.log('tick', JSON.parse(e.data));
Base URL
Use https://api.aureq.dev
for public data. Auth endpoints will be published later.
Symbols
Use standard tickers: NVDA
, AAPL
, etc. For RWA tickers, use field symbol
from market list.
Rate limits
Public endpoints are rate‑limited. Consider caching and exponential backoff.
Webhooks
Order updates and fills will support webhooks. Subscribe with your URL to receive events.
{ code, message }
. Pagination returns { items, nextPage }
. SDKs (TS/JS, Python) are planned.