Skip to main content
GET
/
market-data
/
assets
/
{symbol}
/
snapshot
Get full asset snapshot
curl --request GET \
  --url https://api.bluumfinance.com/v1/market-data/assets/{symbol}/snapshot \
  --header 'Authorization: Basic <encoded-value>'
{
  "object": "investor",
  "livemode": false,
  "symbol": "AAPL",
  "market": "XNAS",
  "currency": "USD",
  "timestamp": "2023-11-07T05:31:56Z",
  "id": "inv_01j9x8m2k7qpzwv3t5r6y8n0ab",
  "created": 1747776000,
  "metadata": {},
  "latest_trade": {
    "price": 123,
    "size": 123,
    "timestamp": "2023-11-07T05:31:56Z",
    "exchange": "<string>"
  },
  "latest_quote": {
    "bid_price": 123,
    "ask_price": 123,
    "bid_size": 123,
    "ask_size": 123,
    "timestamp": "2023-11-07T05:31:56Z"
  },
  "daily_bar": {
    "open": 123,
    "high": 123,
    "low": 123,
    "close": 123,
    "volume": 123,
    "vwap": 123,
    "date": "2023-12-25"
  },
  "prev_daily_bar": {
    "close": 123,
    "date": "2023-12-25"
  },
  "change": 123,
  "change_percent": 123
}

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

Envelope-wrapped snapshot (object: asset_snapshot).

object
string
required

The resource type discriminator.

Example:

"investor"

livemode
boolean
required

Whether this resource was created against a live API key. Test-mode keys always return false.

Example:

false

symbol
string
required
Example:

"AAPL"

market
string
required
Example:

"XNAS"

currency
string
required
Example:

"USD"

source
enum<string>
required
Available options:
ALPACA,
NAYA,
DATABASE
timestamp
string<date-time>
required
id
string

Prefixed public id (e.g. inv_…, ord_…, dep_…).

Example:

"inv_01j9x8m2k7qpzwv3t5r6y8n0ab"

created
integer | null

Unix-seconds timestamp of resource creation.

Example:

1747776000

metadata
object

Partner-set key/value map for cross-referencing.

latest_trade
object
latest_quote
object
daily_bar
object
prev_daily_bar
object
change
number

Price change from previous close

change_percent
number

Percentage change from previous close

confidence
enum<string>
Available options:
REAL_TIME,
DELAYED,
END_OF_DAY,
STALE,
UNAVAILABLE