STONKTRADERDEVELOPER

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

FieldMeaning
bid, askCurrent reference prices in currency
dailyHigh, dailyLowCurrent-session range when available
dailyTradingVolumeCurrent-session underlying volume
generatedAtTimestamp supplied with the quote
isTradingHaltWhether the asset is currently halted
deploymentsChain ID and Stock Token contract address

Errors

  • 400 — the symbols query 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.

On this page