cURL
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 } }
HTTP Basic Authentication using the API Key as username and API Secret as password.
Asset symbol
"AAPL"
Asset data with chart bars
success
"success"
Show child attributes