v1.0 API LiveReal-time divergence feeds across Chainlink & AMMs.
Developer API Live

The missing middlewarefor tokenized equities.

Monitor real-time divergence between Chainlink Oracles and On-chain AMMs. Build safer lending markets.

OAuth signups & API keys opening soon.
bash
~/equvia$curl https://api.equvia.xyz/v1/stocks
[
{
"symbol": "bCOIN",
"oracle_price": 142.50,
"dex_price": 144.20,
"divergence_bps": 119,
"dex_liquidity_usd": 850400.00,
"is_tradable": true
},
...
]

Equvia abstracts away the complexity of monitoring tokenized stocks. No more running nodes, parsing multiple feeds, or calculating split factors manually.

Real-Time Divergence

Get the exact bps spread between Chainlink Oracles and On-chain AMMs instantly. Know the slippage before you route.

Liquidity Awareness

Query the exact USD depth of active DEX pools so your smart contracts never route into shallow liquidity.

WebSocket Streaming

Push real-time price updates directly to your arbitrage bots and risk engines with ultra-low latency.

Asset Agnostic

Built to support the entire Backed B20 ecosystem on Base, including bAAPL, bCOIN, and bIB01.

Our REST API and SDKs are designed for maximum developer ergonomics. Fetch market states with a single line of code.

import { EquviaClient } from '@equvia/sdk';

const equvia = new EquviaClient();

// Get real-time spread for bCOIN
const data = await equvia.stocks.getSpread('bCOIN');

console.log(data.divergence_bps);