Skip to main content
GET
/
market-data
/
assets
/
{symbol}
Get asset profile with latest quote
curl --request GET \
  --url https://service.bluumfinance.com/v1/market-data/assets/{symbol} \
  --header 'Authorization: Basic <encoded-value>'
{
  "status": "success",
  "data": {
    "id": "b0b6dd9d-8b9b-48b9-bbb8-bbbb49bb1bbb",
    "class": "us_equity",
    "market": "XNAS",
    "symbol": "AAPL",
    "name": "Apple Inc.",
    "status": "active",
    "tradable": true,
    "marginable": true,
    "shortable": true,
    "easy_to_borrow": true,
    "fractionable": true,
    "currency": "USD",
    "price": 178.5,
    "change": 1.5,
    "changePercent": 0.85,
    "previousClose": 177,
    "bidPrice": 178.48,
    "askPrice": 178.52
  }
}

Authorizations

Authorization
string
header
required

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

Path Parameters

symbol
string
required

Asset ticker symbol

Query Parameters

market
string

Market hint (MIC or common code) for disambiguation

Response

Asset profile

status
string
Example:

"success"

data
object

Asset information including metadata and current price data