Market data
Read live Stock Token quotes and deployment metadata from the StonkTrader API.
The market API returns normalized quotes for active Robinhood Stock Tokens. It is public and does not require a StonkTrader access token.
Get quotes
Request up to 12 comma-separated symbols:
curl "https://api.stonktrader.finance/markets/quotes?symbols=NVDA,AAPL"{
"code": 0,
"message": "ok",
"data": {
"items": [
{
"ask": "220.17",
"bid": "220.16",
"currency": "USD",
"dailyHigh": "220.6",
"dailyLow": "215.83",
"dailyTradingVolume": "42942297",
"deployments": [
{
"chainId": 4663,
"contractAddress": "0xd0601CE157Db5bdC3162BbaC2a2C8aF5320D9EEC"
}
],
"generatedAt": "2026-08-31T15:25:29.709Z",
"isTradingHalt": false,
"tokenSymbol": "NVDA"
}
]
}
}Prices and volumes are decimal strings. Keep them as strings or parse them with a decimal library; do not use binary floating-point for settlement math.
Fields
| Field | Meaning |
|---|---|
bid, ask | Current reference prices in currency |
dailyHigh, dailyLow | Current-session range when available |
dailyTradingVolume | Current-session underlying volume |
generatedAt | Timestamp supplied with the quote |
isTradingHalt | Whether the asset is currently halted |
deployments | Chain ID and Stock Token contract address |
Errors
400— thesymbolsquery is empty or invalid.404— a requested symbol does not have an official quote.502— the market-data provider is unavailable or returned invalid data.504— the upstream request timed out.
Use GET /trading/stocks when the
integration also needs the trading contract, wrapper address, token decimals,
and executable tradable state.