Skip to main content
GET
/
api
/
market
/
v1
/
list-market-quotes
ListMarketQuotes
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
}

Query Parameters

symbols
string

Ticker symbols to retrieve (e.g., ["AAPL", "^GSPC"]). Empty returns defaults.

Response

Successful response

ListMarketQuotesResponse contains stock and index quotes.

quotes
object[]
finnhubSkipped
boolean

True when the Finnhub API key is not configured and stock quotes were skipped.

skipReason
string

Human-readable reason when Finnhub was skipped (e.g., "FINNHUB_API_KEY not configured").

rateLimited
boolean

True when the upstream API rate-limited the request.