Returns a comprehensive snapshot including latest trade, bid/ask quote, daily bar, previous close, and change calculations.
cURL
curl --request GET \ --url https://service.bluumfinance.com/v1/market-data/assets/{symbol}/snapshot \ --header 'Authorization: Basic <encoded-value>'
{ "status": "success", "data": { "symbol": "AAPL", "market": "XNAS", "currency": "USD", "source": "ALPACA", "timestamp": "2023-11-07T05:31:56Z", "latestTrade": { "price": 123, "size": 123, "timestamp": "2023-11-07T05:31:56Z", "exchange": "<string>" }, "latestQuote": { "bidPrice": 123, "askPrice": 123, "bidSize": 123, "askSize": 123, "timestamp": "2023-11-07T05:31:56Z" }, "dailyBar": { "open": 123, "high": 123, "low": 123, "close": 123, "volume": 123, "vwap": 123, "date": "2023-12-25" }, "prevDailyBar": { "close": 123, "date": "2023-12-25" }, "change": 123, "changePercent": 123, "confidence": "REAL_TIME" } }
HTTP Basic Authentication using the API Key as username and API Secret as password.
Market hint for disambiguation
Asset snapshot
"success"
Show child attributes