Developers
REST API
Public market data endpoints.
Markets
Returns every listed market with live pricing and protocol metrics.
curl https://api.vanta.trade/v1/markets
{
"markets": [
{
"symbol": "RHC",
"price": 4.812,
"change24h": 6.42,
"openInterest": 8241933.5,
"fundingRate": 0.000112
}
]
}Candles
OHLCV series for a market and timeframe.
curl "https://api.vanta.trade/v1/candles?symbol=RHC&tf=1H&limit=200"