Whether the delayed-quote provider is configured (REQ-9.5).
GET
/api/symbols/quote-config
const url = 'https://api.tradr.cloud/api/symbols/quote-config';const options = {method: 'GET'};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request GET \ --url https://api.tradr.cloud/api/symbols/quote-configReturns { stockQuoteConfigured: boolean } so the frontend can gate the pull-last-price affordance without probing the quote endpoint. Gates solely on the presence of the provider key. Requires an authenticated session.
Responses
Section titled “Responses”{ stockQuoteConfigured: boolean }.
No authenticated session (UNAUTHORIZED).