curl --request GET \
--url http://localhost:8000/market-data/active-feeds \
--header 'Authorization: Basic <encoded-value>'Get information about currently active market data feeds.
Args: request: FastAPI request object to access application state
Returns: Dictionary with active feeds information including last access times and expiration
curl --request GET \
--url http://localhost:8000/market-data/active-feeds \
--header 'Authorization: Basic <encoded-value>'Basic authentication header of the form Basic <encoded-value>, where <encoded-value> is the base64-encoded string username:password.
Successful Response
Was this page helpful?