Latest OHLCV snapshot for one or more symbols in a single request. Pass symbols as a comma-separated list (up to 50 symbols). The response is keyed by ticker — symbols that cannot be resolved return null.
symbols string required Comma-separated list of stock ticker symbols (max 50 symbols).
curl 'https://api.stockfit.io/v1/api/price/quote?symbols=AAPL%2CMSFT%2CGOOGL' \
-H 'Authorization: Bearer YOUR_API_TOKEN'Map of ticker to latest quote.
* null | object ts string (date-time) Bar start timestamp (ISO 8601, UTC).
open number | null high number | null low number | null close number adjClose number | null Split/dividend adjusted close. May equal `close` for the latest bar.
volume number {
"AAPL": {
"ts": "2026-05-26T20:00:01.000Z",
"open": 309.4,
"high": 311.82,
"low": 307.67,
"close": 308.33,
"adjClose": 308.33,
"volume": 46602561
},
"UNKNOWNTICKER": null
}Invalid parameters.
error string Human-readable error message
{}Feature not available on current plan.
error string Human-readable error message
{}