Skip to main content
GET
/
assets
/
{symbol}
Get asset data by symbol
curl --request GET \
  --url https://service.bluumfinance.com/v1/assets/{symbol} \
  --header 'Authorization: Basic <encoded-value>'
{
  "status": "success",
  "data": {
    "symbol": "AAPL",
    "bars": [
      {
        "timestamp": "2025-01-02T05:00:00Z",
        "open": 248.93,
        "high": 249.025,
        "low": 241.845,
        "close": 243.82,
        "volume": 1720928,
        "tradeCount": 19452,
        "volumeWeightedAveragePrice": 244.108677
      },
      {
        "timestamp": "2025-01-03T05:00:00Z",
        "open": 243.315,
        "high": 244.165,
        "low": 241.89,
        "close": 243.41,
        "volume": 1182159,
        "tradeCount": 12869,
        "volumeWeightedAveragePrice": 242.982652
      }
    ],
    "nextPageToken": null
  }
}

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 symbol

Example:

"AAPL"

Response

Asset data with chart bars

status
enum<string>
Available options:
success
Example:

"success"

data
object