cURL
curl --request GET \ --url https://api.example.com/api/market/v1/list-market-quotes
{ "quotes": [ { "symbol": "<string>", "name": "<string>", "display": "<string>", "price": 123, "change": 123, "sparkline": [ 123 ] } ], "finnhubSkipped": true, "skipReason": "<string>", "rateLimited": true }
ListMarketQuotes retrieves stock and index quotes.
Ticker symbols to retrieve (e.g., ["AAPL", "^GSPC"]). Empty returns defaults.
Successful response
ListMarketQuotesResponse contains stock and index quotes.
Show child attributes
True when the Finnhub API key is not configured and stock quotes were skipped.
Human-readable reason when Finnhub was skipped (e.g., "FINNHUB_API_KEY not configured").
True when the upstream API rate-limited the request.
Was this page helpful?