Skip to main content
GET
/
market-data
/
assets
/
{symbol}
/
snapshot
Get full asset snapshot
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"
  }
}

Authorizations

Authorization
string
header
required

HTTP Basic Authentication using the API Key as username and API Secret as password.

Path Parameters

symbol
string
required

Query Parameters

market
string

Market hint for disambiguation

Response

Asset snapshot

status
string
Example:

"success"

data
object